diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-05-11 12:26:39 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-05-11 12:26:39 -0700 |
commit | 649d126ed3bcef2b22b6cc53a35a0ac75c0cee14 (patch) | |
tree | 489959399dcf299c67e5308807ac62f00ca82986 /tools/run_tests | |
parent | f624a796e794750ea243341da2d56462204ae9a8 (diff) |
set GOPATH when executing go worker
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/performance/run_worker_go.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/performance/run_worker_go.sh b/tools/run_tests/performance/run_worker_go.sh index f7f2ece137..6b1242a419 100755 --- a/tools/run_tests/performance/run_worker_go.sh +++ b/tools/run_tests/performance/run_worker_go.sh @@ -32,4 +32,6 @@ set -ex cd $(dirname $0)/../../.. -../gopath/bin/worker $@ +export GOPATH=$(pwd)/../gopath + +${GOPATH}/bin/worker $@ |