diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | lib/keyringer/actions/encrypt | 5 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2019-03-25 - Silvio Rhatto <rhatto@riseup.net> + + Adds COMMIT_AFTER_ENCRYPT setting + 2019-01-29 - 0.5.4 - Silvio Rhatto <rhatto@riseup.net> Use --no-encrypt-to GnuPG option to strictly respect the recipients file diff --git a/lib/keyringer/actions/encrypt b/lib/keyringer/actions/encrypt index 11db62c..e25ad6c 100755 --- a/lib/keyringer/actions/encrypt +++ b/lib/keyringer/actions/encrypt @@ -124,5 +124,10 @@ if [ -d "$BASEDIR/.git" ]; then keyringer_exec git "$BASEDIR" add "keys/$FILE" fi +# Optional commit depending on the value of this setting +if [ "$COMMIT_AFTER_ENCRYPT" == "yes" ]; then + keyringer_exec git "$BASEDIR" commit -m "Changes for $FILE" +fi + # Done exit "$?" |