summaryrefslogtreecommitdiff
path: root/post-install.d/50git-commit
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-04 17:38:10 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-04 17:38:10 -0500
commit788ae5a34c0fad2e3c0788a745400a138d735195 (patch)
tree2517eb3ccf206f4ed7b6ef6a1d543c87caaf2e41 /post-install.d/50git-commit
parent69739dd0341ba72a645344ea14658f0ede006079 (diff)
parentfd4a85189390d6e6f022eb8f71fcecb5d5f82958 (diff)
Merge branch 'hg'
Significantly refactored
Diffstat (limited to 'post-install.d/50git-commit')
-rwxr-xr-xpost-install.d/50git-commit9
1 files changed, 0 insertions, 9 deletions
diff --git a/post-install.d/50git-commit b/post-install.d/50git-commit
deleted file mode 100755
index 78247ca..0000000
--- a/post-install.d/50git-commit
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-set -e
-
-if [ -d .git ]; then
- message="committing changes after $HIGHLEVEL_PACKAGE_MANAGER run"
-
- # ignore exit code since it exits nonzero if there is nothing to do
- git commit $GIT_COMMIT_OPTIONS -m "$message" || true
-fi