From: Chris Koeritz Date: Thu, 2 Feb 2017 19:10:02 +0000 (-0500) Subject: correcting recustomize X-Git-Tag: 2.140.90~240 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=0ca84441fdc7dba0417784dff7d9aacb0ed29bde;p=feisty_meow.git correcting recustomize somehow was not using a local variable for 'user', and that was mysteriously set to the same thing as USER someplace. argh argh argh --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 50066629..e27e6d91 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -379,7 +379,7 @@ if [ -z "$skip_all" ]; then # to merge their functions and aliases with the standard set. function recustomize() { - user="$1"; shift + local user="$1"; shift if [ -z "$user" ]; then # use our default example user if there was no name provided. user=fred