Skip to content

Commit

Permalink
Added bin path to gdm call in case the GOPATH/bin folder is not on th…
Browse files Browse the repository at this point in the history
…e users path.
  • Loading branch information
Ross McDonald committed Feb 24, 2016
1 parent 402f873 commit 110c096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 110c096

Please sign in to comment.