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 9b1cbe79e354d433d72ad7d8399fcca704f02db9
parent 1edc1a7ecc74798484b690db0f88b9ac30120162
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Fri, 18 Apr 2014 13:23:08 +0200

Remove unneeded semicolon.

Diffstat:
Msrc/password-store.sh | 28++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/src/password-store.sh b/src/password-store.sh @@ -630,19 +630,19 @@ PROGRAM="${0##*/}" COMMAND="$1" case "$1" in - init) shift; cmd_init "$@"; ;; - help|--help) shift; cmd_usage "$@"; ;; - version|--version) shift; cmd_version "$@"; ;; - show|ls|list) shift; cmd_show "$@"; ;; - find|search) shift; cmd_find "$@"; ;; - grep) shift; cmd_grep "$@"; ;; - insert) shift; cmd_insert "$@"; ;; - edit) shift; cmd_edit "$@"; ;; - generate) shift; cmd_generate "$@"; ;; - delete|rm|remove) shift; cmd_delete "$@"; ;; - rename|mv) shift; cmd_copy_move "move" "$@"; ;; - copy|cp) shift; cmd_copy_move "copy" "$@"; ;; - git) shift; cmd_git "$@"; ;; - *) COMMAND="show"; cmd_show "$@"; ;; + init) shift; cmd_init "$@" ;; + help|--help) shift; cmd_usage "$@" ;; + version|--version) shift; cmd_version "$@" ;; + show|ls|list) shift; cmd_show "$@" ;; + find|search) shift; cmd_find "$@" ;; + grep) shift; cmd_grep "$@" ;; + insert) shift; cmd_insert "$@" ;; + edit) shift; cmd_edit "$@" ;; + generate) shift; cmd_generate "$@" ;; + delete|rm|remove) shift; cmd_delete "$@" ;; + rename|mv) shift; cmd_copy_move "move" "$@" ;; + copy|cp) shift; cmd_copy_move "copy" "$@" ;; + git) shift; cmd_git "$@" ;; + *) COMMAND="show"; cmd_show "$@" ;; esac exit 0