diff options
author | GitIR <git@zachir.xyz> | 2023-07-10 23:08:40 -0500 |
---|---|---|
committer | GitIR <git@zachir.xyz> | 2023-07-10 23:08:40 -0500 |
commit | 91a1614087ac49c3074f1961fbb2ed8eeca2724d (patch) | |
tree | 652855c81e37714546a77ab7443d557a5e47f4fb /zsh | |
parent | e710e1ec2bcd62bcd84d89de928ce2c68c6159ac (diff) |
Fix zsh path exports again because I merged badly
Diffstat (limited to 'zsh')
-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" |