aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-22 21:19:53 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-22 21:19:53 -0400
commit577477e1ce94d6a9626a0db3ba700c0d971c704c (patch)
treecb6f1b9306d9d1bb6d12feab794e81e43ac9e487
parentae45223b3187476c4828254676edd94aff443ade (diff)
downloadikiwiki-577477e1ce94d6a9626a0db3ba700c0d971c704c.tar
ikiwiki-577477e1ce94d6a9626a0db3ba700c0d971c704c.tar.gz
put monotone dir name munging code in auto.setup
conceptually cleaner to do it this way
-rw-r--r--auto.setup2
-rwxr-xr-xikiwiki-makerepo2
2 files changed, 1 insertions, 3 deletions
diff --git a/auto.setup b/auto.setup
index 74879dbc5..ef0f1723c 100644
--- a/auto.setup
+++ b/auto.setup
@@ -28,7 +28,7 @@ IkiWiki::Setup::Automator->import(
rcs => $rcs,
srcdir => "$ENV{HOME}/$wikiname",
destdir => "$ENV{HOME}/public_html/$wikiname",
- repository => "$ENV{HOME}/$wikiname.$rcs",
+ repository => "$ENV{HOME}/$wikiname.".($rcs eq "monotone" ? "mtn" : $rcs),
dumpsetup => "$ENV{HOME}/$wikiname.setup",
url => "http://$domain/~$ENV{USER}/$wikiname",
cgiurl => "http://$domain/~$ENV{USER}/$wikiname/ikiwiki.cgi",
diff --git a/ikiwiki-makerepo b/ikiwiki-makerepo
index ef6274498..c3d835c30 100755
--- a/ikiwiki-makerepo
+++ b/ikiwiki-makerepo
@@ -94,8 +94,6 @@ monotone)
fi
mkdir -p "$(dirname "$repository")"
- # fix the repository suffix we get from auto.setup
- repository="$(echo "$repository" | sed 's/.monotone/.mtn/g')"
mtn db init -d "$repository"
cleaned_srcdir=$(basename "$srcdir" | tr -s "[:space:]" "_" | sed 's/_$//g')