diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-05-11 14:39:35 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-05-11 14:39:35 +0200 |
commit | fcbec6c0181495740ee39337efa9b5d425431df5 (patch) | |
tree | ce72abfddc523f6853f3829959b05d61e5c1bdb4 /src/password-store.sh | |
parent | af3b815c91a35cc8a6054bba64ceb1f4a71b9649 (diff) | |
download | pass-fcbec6c0181495740ee39337efa9b5d425431df5.tar.gz pass-fcbec6c0181495740ee39337efa9b5d425431df5.tar.bz2 pass-fcbec6c0181495740ee39337efa9b5d425431df5.zip |
Use 6 Xs for mktemp
Diffstat (limited to '')
-rwxr-xr-x | src/password-store.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/password-store.sh b/src/password-store.sh index 13e07e2..d535a74 100755 --- a/src/password-store.sh +++ b/src/password-store.sh @@ -411,7 +411,7 @@ cmd_edit() { local passfile="$PREFIX/$path.gpg" tmpdir #Defines $SECURE_TMPDIR - local tmp_file="$(mktemp -u "$SECURE_TMPDIR/XXXXX")-${path//\//-}.txt" + local tmp_file="$(mktemp -u "$SECURE_TMPDIR/XXXXXX")-${path//\//-}.txt" local action="Add" |