Skip to content

Commit

Permalink
fix: DEBUG variable unbound is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
FeryET committed Mar 14, 2024
1 parent 9a3cc4f commit 81c0ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ download_release() {
filename="$2"
filepath="$3"
url="$GH_REPO/releases/download/$version/$filename"
if [[ -n $DEBUG ]]; then
if [ -n "$DEBUG" ]; then
echo "Filename is: $filename"
echo "Downloading from $url"
fi
Expand Down

0 comments on commit 81c0ea2

Please sign in to comment.