aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2020-01-09 13:36:39 +0000
committerGitHub <noreply@github.com>2020-01-09 13:36:39 +0000
commit6b2f461d520753636f555671a0cf1594c5000e4e (patch)
tree909734f7f84d48746b95db97d63a09d861ee830a /build.sh
parentc28577ea25d4f9c82110450f7f371905c2750f71 (diff)
make cmd directory path absolute in build.sh (#830)
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 9a8050f3..cb109111 100755
--- a/build.sh
+++ b/build.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-GOBIN=$PWD/`dirname $0`/bin go install -v ./cmd/...
+GOBIN=$PWD/`dirname $0`/bin go install -v $PWD/`dirname $0`/cmd/...