Skip to content

Commit

Permalink
Merge pull request #352 from commojun/fix/gopath
Browse files Browse the repository at this point in the history
fix gopath
  • Loading branch information
crramirez committed Sep 23, 2021
2 parents e43d49d + 6a5cd2b commit fe8213f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pengwin-setup.d/go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (confirm --title "GO" --yesno "Would you like to download and install the lat
#!/bin/sh
export GOROOT="/usr/local/go"
export GOPATH="\${HOME}/go/"
export GOPATH="\${HOME}/go"
export PATH="\${GOPATH}/bin:\${GOROOT}/bin:/usr/local/go/bin:\${PATH}"
EOF
Expand All @@ -36,7 +36,7 @@ EOF
#!/bin/fish
set --export GOROOT "/usr/local/go"
set --export GOPATH "\$HOME/go/"
set --export GOPATH "\$HOME/go"
set --export PATH "\$GOPATH/bin:\$GOROOT/bin:/usr/local/go/bin:\$PATH"
EOF
Expand Down

0 comments on commit fe8213f

Please sign in to comment.