diff options
Diffstat (limited to 'hg/post-apt.d/30hg-add')
-rw-r--r-- | hg/post-apt.d/30hg-add | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hg/post-apt.d/30hg-add b/hg/post-apt.d/30hg-add new file mode 100644 index 0000000..79aa406 --- /dev/null +++ b/hg/post-apt.d/30hg-add @@ -0,0 +1,7 @@ +#!/bin/sh +set -e +if [ -d .git ]; then + if ! git-add .; then + echo "etckeeper warning: git-add failed" >&2 + fi +fi |