aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-04-18 13:23:08 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2014-04-18 13:23:08 +0200
commit9b1cbe79e354d433d72ad7d8399fcca704f02db9 (patch)
tree441ca2c8db8c898e683d8ebaf4d147274213c7c0 /src
parentCheck sneaky paths. (diff)
downloadpassword-store-9b1cbe79e354d433d72ad7d8399fcca704f02db9.tar.xz
password-store-9b1cbe79e354d433d72ad7d8399fcca704f02db9.zip
Remove unneeded semicolon.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/password-store.sh28
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