From 0ca84441fdc7dba0417784dff7d9aacb0ed29bde Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 2 Feb 2017 14:10:02 -0500 Subject: [PATCH] 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 --- scripts/core/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1