diff options
author | 2016-02-05 01:20:18 +0100 | |
---|---|---|
committer | 2016-02-05 01:20:18 +0100 | |
commit | 1c50cbefb2e636a9b6c76e90c2a287acfa8d3f30 (patch) | |
tree | aec58b54fc06f7a3192cd7ea7f938b1fa5640883 /src | |
parent | Handle removal of directories and passwords with the same name (diff) | |
download | password-store-1c50cbefb2e636a9b6c76e90c2a287acfa8d3f30.tar.xz password-store-1c50cbefb2e636a9b6c76e90c2a287acfa8d3f30.zip |
Insert and edit work on files, so don't let the arguments be directories
Diffstat (limited to 'src')
-rwxr-xr-x | src/password-store.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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")" |