From 110c096e58008969055401dac75bca511496466a Mon Sep 17 00:00:00 2001 From: Ross McDonald Date: Wed, 24 Feb 2016 13:44:52 -0600 Subject: [PATCH] Added bin path to gdm call in case the GOPATH/bin folder is not on the users path. --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index f61d9df3983..144bbe95c33 100755 --- a/build.py +++ b/build.py @@ -465,7 +465,7 @@ def go_get(branch, update=False): run(get_command) print "Retrieving dependencies with `gdm`..." sys.stdout.flush() - run("gdm restore") + run("{}/bin/gdm restore".format(os.environ.get("GOPATH"))) def generate_md5_from_file(path): m = hashlib.md5()