diff options
author | GitIR <git@zachir.xyz> | 2023-07-10 23:08:40 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-07-18 00:17:40 -0500 |
commit | 8f191fc992d48a9db53a2f8342f86324e28761bf (patch) | |
tree | cf2b65a2b6246daa93872fc5c932ec7e158dcf89 | |
parent | ed8855da306014d41b1bb560d36b2ac75fcd36e4 (diff) |
Fix zsh path exports again because I merged badly
-rw-r--r-- | zsh/.zshenv | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/zsh/.zshenv b/zsh/.zshenv index 1840082..1ac6756 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -122,33 +122,6 @@ fi if [ -d "$GOPATH/bin" ]; then PATH="$PATH:$GOPATH/bin" fi -if [ -d "/opt/REAPER" ]; then - export PATH="$PATH:/opt/REAPER" -fi -if [ -d "/usr/local/bin" ]; then - export PATH="$PATH:/usr/local/bin" -fi -if [ -d "/usr/local/sbin" ]; then - export PATH="$PATH:/usr/local/sbin" -fi -if [ -d "/opt/safing/portmaster" ]; then - export PATH="$PATH:/opt/safing/portmaster" -fi -if [ -d "/var/lib/flatpak/exports/bin" ]; then - PATH="$PATH:/var/lib/flatpak/exports/bin" -fi -if [ -d "/usr/bin" ]; then - export PATH="$PATH:/usr/bin" -fi -if [ -d "/usr/sbin" ]; then - export PATH="$PATH:/usr/sbin" -fi -if [ -d "/bin" ]; then - export PATH="$PATH:/bin" -fi -if [ -d "/sbin" ]; then - export PATH="$PATH:/sbin" -fi # MERGE PATHS export PATH="$PATH:$SYSPATH" |