Add commit hook script for bzr to add new files
authorJoey Hess <joey@kodama.kitenet.net>
Sat, 5 Apr 2008 19:14:41 +0000 (15:14 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Sat, 5 Apr 2008 19:14:41 +0000 (15:14 -0400)
commit.d/40bzr-rm
commit.d/40git-rm
debian/changelog

index b690acca47aaf25f40bf44887328e5a720970542..d908a401e9f42f12e5d203a1408304f4e620a118 100755 (executable)
@@ -1,6 +1,9 @@
 #!/bin/sh
 set -e
 
+IFS='
+'
+
 if [ "$VCS" = bzr ] && [ -d .bzr ]; then
        for file in $(bzr deleted); do
                if [ ! -d "$file" ]; then 
index acf7c37ce2991ba902f8be4e62b9bca2c662e480..d2c51c206a675cb000a7592918ea13ce8ef7bf8d 100755 (executable)
@@ -1,6 +1,9 @@
 #!/bin/sh
 set -e
 
+IFS='
+'
+
 if [ "$VCS" = git ] && [ -d .git ]; then
        for file in $(git ls-files --deleted); do
                if [ ! -d "$file" ]; then 
index 7c131fd6ab700d15fa4bc8d7ca95b5502c619ad7..8d5b12415a7b270ee7f0d3e4f7150a63baa84629 100644 (file)
@@ -2,6 +2,8 @@ etckeeper (0.15) UNRELEASED; urgency=low
 
   * Support for the new bzr pre-commit hook. This requires bzr version 1.4.
     (Jelmer Vernooij)
+  * bzr: Set nickname for tree in init.d/40vcs-init (Daniel Hahler)
+  * Add commit hook script for bzr to add new files (Daniel Hahler)
 
  -- Joey Hess <joeyh@debian.org>  Sat, 05 Apr 2008 14:39:10 -0400