Skip to content

Commit 598c472

Browse files
lsimonsyadvr
authored andcommitted
CLOUDSTACK-7143: remove erroneous backticks
The backticks in the Vagrantfile template were getting evaluated by bash. This caused some harmless but confusing error messages to appear on running the build. Easy fix is to remove them.
1 parent 35347f8 commit 598c472

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/appliance/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,9 +467,9 @@ function vagrant_export() {
467467
cp "${disk}" "box/${appliance_build_name}/box.ovf"
468468
cat >box/${appliance_build_name}/Vagrantfile <<END
469469
Vagrant::Config.run do |config|
470-
# This Vagrantfile is auto-generated by `vagrant package` to contain
470+
# This Vagrantfile is auto-generated by vagrant package to contain
471471
# the MAC address of the box. Custom configuration should be placed in
472-
# the actual `Vagrantfile` in this box.
472+
# the actual Vagrantfile in this box.
473473
config.vm.base_mac = "${mac_address}"
474474
end
475475

0 commit comments

Comments
 (0)