aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-07-01 22:16:55 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-07-01 22:16:55 +1200
commit7d86a4bca3500885cd2f9b11cd97688685ccb7c5 (patch)
tree908e8ff7894513109dad0665a53417ddc42680f0
parentCorrect srand() arg count (diff)
downloaddotfiles-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.sh2
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