diff options
author | Maximilian Gass <mxey@ghosthacking.net> | 2009-07-01 16:27:45 +0200 |
---|---|---|
committer | Maximilian Gass <mxey@ghosthacking.net> | 2009-07-01 16:27:45 +0200 |
commit | f41f933ae94f326d21911cc3e251f1ffeecd4214 (patch) | |
tree | 1ac19ace662ba996219bbc929f0d8b85ee41efc4 | |
parent | 7d92c27544223fb1998dad1300b8e0e67d9f53a9 (diff) |
Undotfiled the store
-rwxr-xr-x | bin/envstore | 2 | ||||
-rwxr-xr-x | test/main | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/envstore b/bin/envstore index e21c2ca..e71b780 100755 --- a/bin/envstore +++ b/bin/envstore @@ -7,7 +7,7 @@ use warnings; use Pod::Usage; use Simplestore; -my $store_file = "/tmp/.envstore-$>"; +my $store_file = "/tmp/envstore-$>"; my %store; my $action = shift; my $arg = shift; @@ -13,7 +13,7 @@ while [[ $1 == --* ]] { } typeset envstore=${1-envstore} -typeset store_file=${2-/tmp/.envstore-$UID} +typeset store_file=${2-/tmp/envstore-$UID} trap "print -P '\n%N:%i: %B%F{red}Test faild!%F{default}%b'" ZERR trap "$envstore clear" INT |