From 39c08f6c450550b436506d1ac93f8e00e60ef916 Mon Sep 17 00:00:00 2001 From: rhatto Date: Sun, 25 Sep 2005 16:47:22 +0000 Subject: fix in unsettin variables ('unset $var' should be 'unset var') --- firma | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firma b/firma index 0e389fb..964c552 100755 --- a/firma +++ b/firma @@ -898,10 +898,10 @@ esac # erase all global arrays and variables for ARRAY in $GLOBAL_ARRAYS; do - unset $ARRAY + unset ARRAY done for VAR in $GLOBAL_VARS; do - unset $VAR + unset VAR done -- cgit v1.2.3