Skip to content

Commit abe5a96

Browse files
authored
Merge pull request #15 from daPhipz/fix-shellcheck
Remove backslash escapes
2 parents b7c438c + 6c416e0 commit abe5a96

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

KubuQA.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,10 @@ check_existing_vm(){
123123
# Check version and call the command with the correct parameters
124124
if [ "$vbox_version" -lt 7 ]; then
125125
# Version 6
126-
eval "$base_cmd" --ostype=\"Ubuntu \(64-bit\)\" --paravirtprovider=\"$PARAVIRT\"
126+
eval "$base_cmd" --ostype="Ubuntu (64-bit)" --paravirtprovider="$PARAVIRT"
127127
else
128128
# Version 7 or higher
129-
eval "$base_cmd" --os-type=\"Ubuntu_64\" --paravirt-provider=\"$PARAVIRT\"
129+
eval "$base_cmd" --os-type="Ubuntu_64" --paravirt-provider="$PARAVIRT"
130130
fi
131131

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

0 commit comments

Comments
 (0)