ikiwiki-makerepo: Fix injecting of empty mercurial and bzr repositories. Closes:...
authorJoey Hess <joey@gnu.kitenet.net>
Fri, 2 Jan 2009 19:15:47 +0000 (14:15 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Fri, 2 Jan 2009 19:15:47 +0000 (14:15 -0500)
debian/changelog
ikiwiki-makerepo

index 07062b0..26e22aa 100644 (file)
@@ -1,3 +1,10 @@
+ikiwiki (3.01) UNRELEASED; urgency=low
+
+  * ikiwiki-makerepo: Fix injecting of empty mercurial and bzr repositories.
+    Closes: #510518
+
+ -- Joey Hess <joeyh@debian.org>  Fri, 02 Jan 2009 14:12:16 -0500
+
 ikiwiki (3.00) unstable; urgency=low
 
   * Remove support for GlobLists.
index c3d835c..32a9f86 100755 (executable)
@@ -75,7 +75,7 @@ mercurial)
        hg init "$srcdir"
        cd "$srcdir"
        echo .ikiwiki > .hgignore
-       hg add * .hgignore
+       hg add
        hg commit -m "initial import"
        echo "Directory $srcdir is now set up as a mercurial repository"
 ;;
@@ -83,7 +83,7 @@ bzr)
        bzr init "$srcdir"
        cd "$srcdir"
        echo .ikiwiki > .bzrignore
-       bzr add * .bzrignore
+       bzr add
        bzr commit -m "initial import"
        echo "Directory $srcdir is now set up as a bzr repository"
 ;;