Skip to content

Commit 10859dd

Browse files
committed
fix plugin
1 parent 559c928 commit 10859dd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/smoke-test.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@ deploy_sourcegraph() {
1313
cd $(dirname "${BASH_SOURCE[0]}")/..
1414
#Deploy sourcegraph
1515
if [[ "$TEST_TYPE" == "pure-docker-test" ]]; then
16+
# Fix plugin: https://github.com/hashicorp/vagrant/issues/13550
17+
sed -i -e 's/exists?/exist?/g' /var/lib/buildkite-agent/.vagrant.d/gems/3.3.8/gems/dotenv-0.11.1/lib/dotenv.rb
1618
./test/volume-config.sh
1719
timeout 600s ./pure-docker/deploy.sh
1820
expect_containers="23"
1921
elif [[ "$TEST_TYPE" == "docker-compose-test" ]]; then
20-
docker-compose --file docker-compose/docker-compose.yaml up -d -t 600
22+
# Fix plugin: https://github.com/hashicorp/vagrant/issues/13550
23+
sed -i -e 's/exists?/exist?/g' /var/lib/buildkite-agent/.vagrant.d/gems/3.3.8/gems/dotenv-0.11.1/lib/dotenv.rb
24+
docker-compose --file docker-compose/docker-compose.yaml up -d -t 600
2125
expect_containers="25"
2226
fi
2327

0 commit comments

Comments
 (0)