diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-18 20:56:14 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-02-18 20:56:14 -0500 |
commit | 62374dd1c16a2719202955ad3fe878be5cc14dba (patch) | |
tree | b2d4480ad337ee204719b180613c58e21c7ca392 /src/share/mh/publish_key | |
parent | 88b19565bced6d9ec9b035d1f9fe51ce6567923b (diff) |
new msmktempdir function, to simplify making temporary directories. remove MHTMPDIR, since it's not needed.
Diffstat (limited to 'src/share/mh/publish_key')
-rw-r--r-- | src/share/mh/publish_key | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/mh/publish_key b/src/share/mh/publish_key index b433ad7..37b8a72 100644 --- a/src/share/mh/publish_key +++ b/src/share/mh/publish_key @@ -27,7 +27,7 @@ else fi # create a temporary gnupg directory from which to publish the key -export GNUPGHOME=$(mktemp -d) +export GNUPGHOME=$(msmktempdir) # trap to remove tmp dir if break trap "rm -rf $GNUPGHOME" EXIT |