git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.bash/vars.bash
diff options
context:
space:
mode:
authorH. P. <coding _æ_ lirion.de> 2024-07-14 09:00:08 +0200
committerH. P. <coding _æ_ lirion.de> 2024-07-14 09:00:08 +0200
commit9b850221308f64fe6e641555fcbd24ddf5a7ff7b (patch)
tree2e09ec1e876be0681cbb95cf6974fd815653ccc5 /.bash/vars.bash
parent71b39d46de0bfe14b44f4241c8b8af01d3fb6b27 (diff)
downloaddotfiles-9b850221308f64fe6e641555fcbd24ddf5a7ff7b.tar.bz2
integrate go binaries in $HOME into PATH
Diffstat (limited to '.bash/vars.bash')
-rw-r--r--.bash/vars.bash2
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}"