aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/go.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh/profile.d/go.sh')
-rw-r--r--sh/profile.d/go.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/sh/profile.d/go.sh b/sh/profile.d/go.sh
index 86bf9994..35a4a803 100644
--- a/sh/profile.d/go.sh
+++ b/sh/profile.d/go.sh
@@ -3,6 +3,4 @@ GOPATH=$HOME/.local/gocode
export GOPATH
# Prepend GOPATH to PATH for the executables if it exists
-if [ -d "$GOPATH"/bin ] ; then
- PATH=$GOPATH/bin:$PATH
-fi
+[ -d "$GOPATH"/bin ] && PATH=$GOPATH/bin:$PATH