From 42530c686c6b790cd8a2bceabc2b4c4df764622a Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Thu, 9 Apr 2020 11:56:55 -0700 Subject: [PATCH] move the comment about hardcoding the ggopath --- tests/letstest/multitester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/letstest/multitester.py b/tests/letstest/multitester.py index 20f9c894f..d338f7f4c 100644 --- a/tests/letstest/multitester.py +++ b/tests/letstest/multitester.py @@ -284,11 +284,11 @@ def deploy_script(cxn, scriptpath, *args): cxn.run('./'+scriptfile+' '+args_str) def run_boulder(cxn): - # yes, we're hardcoding the gopath. it's a predetermined AMI. boulder_path = '$GOPATH/src/github.com/letsencrypt/boulder' cxn.run('cd %s && sudo docker-compose up -d' % boulder_path) def config_and_launch_boulder(cxn, instance): + # yes, we're hardcoding the gopath. it's a predetermined AMI. with cxn.prefix('export GOPATH=/home/ubuntu/gopath'): deploy_script(cxn, 'scripts/boulder_config.sh') run_boulder(cxn)