summaryrefslogtreecommitdiff
path: root/pre-commit.d/20store-empty-directory
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-04 18:34:54 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-04 18:34:54 -0500
commit7f95ccf12aa02db60f560a66fc43d8bae1e1175c (patch)
tree52d3f6912976bf46a0b26b6c0a129e218c1083d0 /pre-commit.d/20store-empty-directory
parentbe1a6c1380e81a60c1801bff6ff1a760149633a1 (diff)
tricky stuff to do with storing metadata etc in pre-commit
git needs to git add the files to stage them as part of the current commit, but hg does not, and hg add doesn't do that. Create the files as part of init, this will cause them to be added, pre-commit, which hg needs.
Diffstat (limited to 'pre-commit.d/20store-empty-directory')
-rwxr-xr-xpre-commit.d/20store-empty-directory5
1 files changed, 3 insertions, 2 deletions
diff --git a/pre-commit.d/20store-empty-directory b/pre-commit.d/20store-empty-directory
index 0cab9df..a52a383 100755
--- a/pre-commit.d/20store-empty-directory
+++ b/pre-commit.d/20store-empty-directory
@@ -16,11 +16,12 @@ if [ "$VCS" = git ] || [ "$VCS" = hg ]; then
if [ ! -e .etckeeper ] || ! cmp -s .etckeeper .etckeeper.new ; then
mv -f .etckeeper.new .etckeeper
+ # stage the file as part of the current commit
if [ "$VCS" = git ]; then
git add .etckeeper
- elif [ "$VCS" = hg ]; then
- hg add .etckeeper
fi
+ # hg add not done, hg will automatically include the file
+ # in the current commit
else
rm -f .etckeeper.new
fi