diff options
author | mail_redacted_for_web | 2024-07-14 09:00:08 +0200 |
---|---|---|
committer | mail_redacted_for_web | 2024-07-14 09:00:08 +0200 |
commit | 9b850221308f64fe6e641555fcbd24ddf5a7ff7b (patch) | |
tree | 2e09ec1e876be0681cbb95cf6974fd815653ccc5 /.bash | |
parent | 71b39d46de0bfe14b44f4241c8b8af01d3fb6b27 (diff) | |
download | dotfiles-9b850221308f64fe6e641555fcbd24ddf5a7ff7b.tar.bz2 |
integrate go binaries in $HOME into PATH
Diffstat (limited to '.bash')
-rw-r--r-- | .bash/vars.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash/vars.bash b/.bash/vars.bash index da222b1..a7bdcb5 100644 --- a/.bash/vars.bash +++ b/.bash/vars.bash @@ -18,7 +18,7 @@ SSHAGH+=( "woschd.example.com" ) export SSHAGH # ----- SHELL ----- # -for pa in "/usr/local/bin" "${HOME}/bin" "${HOME}/.local/bin";do +for pa in "/usr/local/bin" "${HOME}/bin" "${HOME}/.local/bin" "${HOME}/go/bin";do if [ -x "$pa" ]; then if ! printf "%b" "$PATH"|grep -P "^${pa}:|:${pa}:" >/dev/null;then export PATH="${pa}:${PATH}" |