File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,15 @@ deploy_sourcegraph() {
13
13
cd $( dirname " ${BASH_SOURCE[0]} " ) /..
14
14
# Deploy sourcegraph
15
15
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
16
18
./test/volume-config.sh
17
19
timeout 600s ./pure-docker/deploy.sh
18
20
expect_containers=" 23"
19
21
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
21
25
expect_containers=" 25"
22
26
fi
23
27
You can’t perform that action at this time.
0 commit comments