diff options
Diffstat (limited to 'setpath.sh')
-rw-r--r-- | setpath.sh | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,16 +1,18 @@ #!/usr/bin/env sh # add some useful stuff to my path (if present) -OLDPATH=$PATH for DIR in \ $HOME/bin \ $HOME/me/bin \ $HOME/.local/bin do - if [ -d $DIR ] then + if [ -d "$DIR" ]; then PATH=$DIR:$PATH fi done # source nix.sh if present -[[ -f ~/.nix-profile/etc/profile.d/nix.sh ]] && . ~/.nix-profile/etc/profile.d/nix.sh +if [ -f ~/.nix-profile/etc/profile.d/nix.sh ]; then + # shellcheck source=/home/ben/.nix-profile/etc/profile.d/nix.sh + . ~/.nix-profile/etc/profile.d/nix.sh +fi |