7 lines
133 B
Bash
Executable File
7 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if command -v go > /dev/null 2>&1; then
|
|
export GOPATH="$HOME/.local/share/Go"
|
|
export GOBIN="$GOPATH/bin"
|
|
fi
|