password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 2a00421716ee01efb6ab17f9c3e934b968d42b92
parent f847dfb10b01bbe5f53c3d66badedfc1be9e9046
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Sun, 29 Jun 2014 10:50:05 +0200

darwin: fix mktemp argument order

Diffstat:
Msrc/platform/darwin.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/platform/darwin.sh b/src/platform/darwin.sh @@ -24,7 +24,7 @@ tmpdir() { rm -rf "$SECURE_TMPDIR" } trap unmount_tmpdir INT TERM EXIT - SECURE_TMPDIR="$(mktemp -t "$template" -d)" + SECURE_TMPDIR="$(mktemp -d -t "$PROGRAM")" DARWIN_RAMDISK_DEV="$(hdid -drivekey system-image=yes -nomount 'ram://32768' | cut -d ' ' -f 1)" # 32768 sectors = 16 mb [[ -z $DARWIN_RAMDISK_DEV ]] && die "Error: could not create ramdisk." newfs_hfs -M 700 "$DARWIN_RAMDISK_DEV" &>/dev/null || die "Error: could not create filesystem on ramdisk."