diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-07-01 22:16:55 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-07-01 22:16:55 +1200 |
commit | 7d86a4bca3500885cd2f9b11cd97688685ccb7c5 (patch) | |
tree | 908e8ff7894513109dad0665a53417ddc42680f0 | |
parent | Correct srand() arg count (diff) | |
download | dotfiles-7d86a4bca3500885cd2f9b11cd97688685ccb7c5.tar.gz dotfiles-7d86a4bca3500885cd2f9b11cd97688685ccb7c5.zip |
Put local gamesdir at end of PATH
So that if anything actually important has the same name, that's used
instead
-rw-r--r-- | sh/profile.d/games.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/profile.d/games.sh b/sh/profile.d/games.sh index ee56c593..956d1de1 100644 --- a/sh/profile.d/games.sh +++ b/sh/profile.d/games.sh @@ -1,3 +1,3 @@ # Add ~/.local/games to PATH if it exists [ -d "$HOME"/.local/games ] || return -PATH=$HOME/.local/games:$PATH +PATH=$PATH:$HOME/.local/games |