aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto>2005-09-25 16:47:22 +0000
committerrhatto <rhatto>2005-09-25 16:47:22 +0000
commit39c08f6c450550b436506d1ac93f8e00e60ef916 (patch)
tree62c2b572fdae07f887b6c81c792d782206e9bc0c
parent5c66592acba53465a88af053b9de024c019f87b1 (diff)
downloadfirma-39c08f6c450550b436506d1ac93f8e00e60ef916.tar.gz
firma-39c08f6c450550b436506d1ac93f8e00e60ef916.tar.bz2
fix in unsettin variables ('unset $var' should be 'unset var')
-rwxr-xr-xfirma4
1 files 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