From 1c50cbefb2e636a9b6c76e90c2a287acfa8d3f30 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 5 Feb 2016 01:20:18 +0100 Subject: Insert and edit work on files, so don't let the arguments be directories --- src/password-store.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/password-store.sh') diff --git a/src/password-store.sh b/src/password-store.sh index 8051451..8b640bd 100755 --- a/src/password-store.sh +++ b/src/password-store.sh @@ -366,7 +366,7 @@ cmd_insert() { esac done [[ $err -ne 0 || ( $multiline -eq 1 && $noecho -eq 0 ) || $# -ne 1 ]] && die "Usage: $PROGRAM $COMMAND [--echo,-e | --multiline,-m] [--force,-f] pass-name" - local path="$1" + local path="${1%/}" local passfile="$PREFIX/$path.gpg" check_sneaky_paths "$path" @@ -404,7 +404,7 @@ cmd_insert() { cmd_edit() { [[ $# -ne 1 ]] && die "Usage: $PROGRAM $COMMAND pass-name" - local path="$1" + local path="${1%/}" check_sneaky_paths "$path" mkdir -p -v "$PREFIX/$(dirname "$path")" set_gpg_recipients "$(dirname "$path")" -- cgit v1.2.3-59-g8ed1b