mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-03-04 06:11:10 -05:00
12 lines
328 B
Bash
12 lines
328 B
Bash
#!/bin/bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
set -x
|
|
|
|
export VAGRANT_EXPERIMENTAL="${VAGRANT_EXPERIMENTAL:-1}"
|
|
export VAGRANT_SPEC_BOX="${VAGRANT_SPEC_BOX}"
|
|
vagrant-spec ${VAGRANT_SPEC_ARGS} --config /vagrant/test/vagrant-spec/configs/vagrant-spec.config.virtualbox.rb
|
|
result=$?
|
|
|
|
exit $result
|