Skip to content

Commit

Permalink
Fix: Quote to protect from globbing / word splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
Rick Timmis committed May 24, 2024
1 parent fb21075 commit e68aa41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KubuQA.sh
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function choose_flavor() {
esac

# Extract ISO filename to Check / Update, and used by VBox manage to mount the ISO
ISO_FILENAME=$(echo $ISO_DOWNLOAD_URL | sed 's/^.*\///')
ISO_FILENAME=$(echo "$ISO_DOWNLOAD_URL" | sed 's/^.*\///')

#Each Flavor should have it's own download directory
ISO_DOWNLOAD_DIR="$ISO_DOWNLOAD_DIR/$FLAVOR"
Expand Down

0 comments on commit e68aa41

Please sign in to comment.