aboutsummaryrefslogtreecommitdiff
path: root/ikiwiki-makerepo
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-01-02 14:15:47 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-01-02 14:15:47 -0500
commit3428cdd9d5b4f9e537df39d971187ee1ffd9c2fb (patch)
treedf5ebec26b20915bed3c60e74101b79bf2033366 /ikiwiki-makerepo
parent499c4ed0754bd8396e6bccaa886996cef4724fd0 (diff)
downloadikiwiki-3428cdd9d5b4f9e537df39d971187ee1ffd9c2fb.tar
ikiwiki-3428cdd9d5b4f9e537df39d971187ee1ffd9c2fb.tar.gz
ikiwiki-makerepo: Fix injecting of empty mercurial and bzr repositories. Closes: #510518
Diffstat (limited to 'ikiwiki-makerepo')
-rwxr-xr-xikiwiki-makerepo4
1 files changed, 2 insertions, 2 deletions
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"
;;