9 lines
201 B
Bash
9 lines
201 B
Bash
|
#!/bin/bash
|
||
|
set -x
|
||
|
|
||
|
export VAGRANT_SPEC_BOX="${VAGRANT_SPEC_BOX}"
|
||
|
vagrant vagrant-spec ${VAGRANT_SPEC_ARGS} /vagrant/test/vagrant-spec/configs/vagrant-spec.config.virtualbox.rb
|
||
|
result=$?
|
||
|
|
||
|
exit $result
|