diff options
author | rhatto <rhatto> | 2005-09-25 16:47:22 +0000 |
---|---|---|
committer | rhatto <rhatto> | 2005-09-25 16:47:22 +0000 |
commit | 39c08f6c450550b436506d1ac93f8e00e60ef916 (patch) | |
tree | 62c2b572fdae07f887b6c81c792d782206e9bc0c | |
parent | 5c66592acba53465a88af053b9de024c019f87b1 (diff) | |
download | firma-39c08f6c450550b436506d1ac93f8e00e60ef916.tar.gz firma-39c08f6c450550b436506d1ac93f8e00e60ef916.tar.bz2 |
fix in unsettin variables ('unset $var' should be 'unset var')
-rwxr-xr-x | firma | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |