diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-18 13:23:08 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-18 13:23:08 +0200 |
commit | 9b1cbe79e354d433d72ad7d8399fcca704f02db9 (patch) | |
tree | 441ca2c8db8c898e683d8ebaf4d147274213c7c0 | |
parent | 1edc1a7ecc74798484b690db0f88b9ac30120162 (diff) | |
download | pass-9b1cbe79e354d433d72ad7d8399fcca704f02db9.tar.gz pass-9b1cbe79e354d433d72ad7d8399fcca704f02db9.tar.bz2 pass-9b1cbe79e354d433d72ad7d8399fcca704f02db9.zip |
Remove unneeded semicolon.
-rwxr-xr-x | src/password-store.sh | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/password-store.sh b/src/password-store.sh index 4874175..3868600 100755 --- 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 |