From b3aff0fe6f1fbb0d309463e38a7ba1fbe4ae362f Mon Sep 17 00:00:00 2001 From: Don Harper Date: Thu, 10 Jul 2025 20:30:46 -0500 Subject: [PATCH] home/bash | path clean up --- home/common/files/bash/bashrc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/home/common/files/bash/bashrc b/home/common/files/bash/bashrc index 911fa1c..bef081a 100755 --- a/home/common/files/bash/bashrc +++ b/home/common/files/bash/bashrc @@ -24,7 +24,7 @@ YELLOW='' RED='' NONE='' export NONE GREEN YELLOW RED -PATH="/run/wrappers/bin:${HOME}/.nix-profile/bin:/etc/profiles/per-user/${USER}/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:${HOME}/bin:${HOME}/go/bin:${HOME}/.local/bin" +PATH="${HOME}/bin:/run/wrappers/bin:${HOME}/.nix-profile/bin:/etc/profiles/per-user/${USER}/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:${HOME}/go/bin:${HOME}/.local/bin" export PATH export GOPATH="${HOME}/go" @@ -58,8 +58,6 @@ export OS_SYS OS_REL OS_TYPE OS_CPU LESS test -f "${HOME}/.bash_functions" && source "${HOME}/.bash_functions" test -d "${HOME}/bin/${HOSTNAME_SHORT}" && PATH="${PATH}:${HOME}/bin/${HOSTNAME_SHORT}" test -d "${HOME}/bin/${OS_CPU}" && PATH="${PATH}:${HOME}/bin/${OS_CPU}" -test -d "${HOME}/bin" && PATH="${PATH}:${HOME}/bin" -test -d "${HOME}/.local/bin" && PATH="${PATH}:${HOME}/.local/bin" test -d "${HOME}/.cargo/bin" && PATH="${PATH}:${HOME}/.cargo/bin" test -d "${HOME}/.local/share/gem" && PATH="${PATH}:${HOME}/.local/share/gem/ruby/latest/bin" test -d /usr/local/sbin && PATH="${PATH}:/usr/local/sbin"