Skip to content

Commit

Permalink
Merge pull request #15 from daPhipz/fix-shellcheck
Browse files Browse the repository at this point in the history
Remove backslash escapes
  • Loading branch information
ricktimmis authored Apr 19, 2024
2 parents b7c438c + 6c416e0 commit abe5a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KubuQA.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ check_existing_vm(){
# Check version and call the command with the correct parameters
if [ "$vbox_version" -lt 7 ]; then
# Version 6
eval "$base_cmd" --ostype=\"Ubuntu \(64-bit\)\" --paravirtprovider=\"$PARAVIRT\"
eval "$base_cmd" --ostype="Ubuntu (64-bit)" --paravirtprovider="$PARAVIRT"
else
# Version 7 or higher
eval "$base_cmd" --os-type=\"Ubuntu_64\" --paravirt-provider=\"$PARAVIRT\"
eval "$base_cmd" --os-type="Ubuntu_64" --paravirt-provider="$PARAVIRT"
fi

#VBoxManage modifyvm "$VM_NAME" --ostype="Ubuntu (64-bit)" --acpi on --nic1 nat --cpus="$VM_CPU_CORES" --memory="$VM_RAM" --paravirtprovider="$PARAVIRT"
Expand Down

0 comments on commit abe5a96

Please sign in to comment.