You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
389 B
Cheetah
12 lines
389 B
Cheetah
{{ if lookPath "go" -}}
|
|
{{ if stat "/usr/local/apps/golang/current/bin" -}}
|
|
if [ -d /usr/local/apps/golang/current/bin ] && ! echo "${PATH}" | grep -q /usr/local/apps/golang/current/bin ; then
|
|
PATH="/usr/local/apps/golang/current/bin:${PATH}"
|
|
fi
|
|
{{- end }}
|
|
|
|
if [ -d "${HOME}/go/bin" ] && ! echo "$PATH" | grep -q "${HOME}/go/bin" ; then
|
|
PATH="${PATH}:${HOME}/go/bin"
|
|
fi
|
|
{{- end }}
|