Compare commits

..

No commits in common. "c14c9e5c6cf40f774aa3f86301f3693fa1bef091" and "618203abd1c8487b6db3cba224eb6019079488ae" have entirely different histories.

View File

@ -874,7 +874,7 @@ function fetch_and_deploy_gh_release() {
if ! command -v unzip &>/dev/null; then
$STD apt-get install -y unzip
fi
$STD unzip "$tmpdir/$filename" -d "$target"
unzip "$tmpdir/$filename" -d "$target"
elif [[ "$filename" == *.tar.gz ]]; then
tar -xzf "$tmpdir/$filename" -C "$target"
else