From: Joey Hess Date: Fri, 2 Jan 2009 19:15:47 +0000 (-0500) Subject: ikiwiki-makerepo: Fix injecting of empty mercurial and bzr repositories. Closes:... X-Git-Tag: 3.01~12 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/3428cdd9d5b4f9e537df39d971187ee1ffd9c2fb ikiwiki-makerepo: Fix injecting of empty mercurial and bzr repositories. Closes: #510518 --- diff --git a/debian/changelog b/debian/changelog index 07062b04a..26e22aa94 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ikiwiki (3.01) UNRELEASED; urgency=low + + * ikiwiki-makerepo: Fix injecting of empty mercurial and bzr repositories. + Closes: #510518 + + -- Joey Hess Fri, 02 Jan 2009 14:12:16 -0500 + ikiwiki (3.00) unstable; urgency=low * Remove support for GlobLists. diff --git a/ikiwiki-makerepo b/ikiwiki-makerepo index c3d835c30..32a9f8646 100755 --- a/ikiwiki-makerepo +++ b/ikiwiki-makerepo @@ -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" ;;