From 70c99619c6f8821dbfa719af6316eaceeb713f8b Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 30 Dec 2012 09:49:29 -0500 Subject: [PATCH] nice fix, now won't complain if there is no /usr/local/games. --- scripts/core/variables.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index b30a727e..bfe00da9 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -177,7 +177,7 @@ if [ -z "$NECHUNG" ]; then # add to the PATH variables used for locating applications. this step is taken after any # potential overrides from the user. - export PATH="$FEISTY_MEOW_GENERATED:$PATH:/sbin:$(find /usr/local/games -maxdepth 1 -type d -exec echo -n {}: ';')." + export PATH="$FEISTY_MEOW_GENERATED:$PATH:/sbin:$(find /usr/local/games -maxdepth 1 -type d -exec echo -n {}: ';' 2>/dev/null)." ############## -- 2.34.1