diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-01-11 15:12:02 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-11 15:12:02 -0500 |
commit | d312709c416944cab8e8e3ad09d47b69f9049931 (patch) | |
tree | ae1fe4d477c4c69f6bdd74282d258082c3121611 /ikiwiki-makerepo | |
parent | ad8fc996ca9fcbf65de81a1890863acf26174287 (diff) |
* Old versions of git-init don't support --git-dir or GIT_DIR with
--bare. Change ikiwiki-makerepo to use a method that should work with
those older versions too.
Diffstat (limited to 'ikiwiki-makerepo')
-rwxr-xr-x | ikiwiki-makerepo | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ikiwiki-makerepo b/ikiwiki-makerepo index a6999cb4a..423c4d93b 100755 --- a/ikiwiki-makerepo +++ b/ikiwiki-makerepo @@ -50,7 +50,11 @@ svn) echo "Directory $srcdir is now a checkout of $rcs repository $repository" ;; git) - GIT_DIR="$repository" git --bare init --shared + # There are better ways to do this, but this works with older + # versions of git.) + mkdir -p "$repository" + (cd "$repository" && git --bare init --shared) + cd "$srcdir" git init echo /.ikiwiki > .gitignore |