diff options
Diffstat (limited to '')
-rwxr-xr-x | src/password-store.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/password-store.sh b/src/password-store.sh index ad22833..8e80798 100755 --- a/src/password-store.sh +++ b/src/password-store.sh @@ -32,7 +32,7 @@ git_commit() { local sign="" [[ -d $GIT_DIR ]] || return [[ $(git config --bool --get pass.signcommits) == "true" ]] && sign="-S" - git commit $sign -m "$1" + git commit -q $sign -m "$1" } yesno() { [[ -t 0 ]] || return 0 |