aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/password-store.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/password-store.sh')
-rwxr-xr-xsrc/password-store.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/password-store.sh b/src/password-store.sh
index f7ad52b..a5d3374 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -69,7 +69,8 @@ git_add_file() {
[[ -d $GIT_DIR ]] || return
git add "$1" || return
[[ -n $(git status --porcelain "$1") ]] || return
- git commit -m "$2"
+ [[ $(git config --bool --get pass.signcommits) == "true" ]] && sign="-S" || sign=""
+ git commit $sign -m "$2"
}
yesno() {
read -r -p "$1 [y/N] " response