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 a679d9f46e8244af7fbb83a2f6d8712f527f4447
parent 1ab2c0734c7676acaded44c12716fd3c2a612d8d
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Tue, 18 Sep 2012 05:44:11 +0200

Quote the template.

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 @@ -21,7 +21,7 @@ tmpdir() { rmdir "$tmp_dir" } trap cleanup_tmp INT TERM EXIT - tmp_dir="$(mktemp -t $template -d)" + tmp_dir="$(mktemp -t "$template" -d)" ramdisk_dev="$(hdid -drivekey system-image=yes -nomount 'ram://32768' | cut -d ' ' -f 1)" # 32768 sectors = 16 mb [[ -z $ramdisk_dev ]] && exit 1 newfs_hfs -M 700 "$ramdisk_dev" &>/dev/null || exit 1