projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c7e7a4
)
correcting recustomize
author
Chris Koeritz
<fred@gruntose.com>
Thu, 2 Feb 2017 19:10:02 +0000
(14:10 -0500)
committer
Chris Koeritz
<fred@gruntose.com>
Thu, 2 Feb 2017 19:10:02 +0000
(14:10 -0500)
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
patch
|
blob
|
history
diff --git
a/scripts/core/functions.sh
b/scripts/core/functions.sh
index 50066629c37eb004503a9acdf66f654a4591ee73..e27e6d915d83b589ed3d0c870ec76b287b8e4d90 100644
(file)
--- 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