Make building locally work again
authorPeter Palfrader <peter@palfrader.org>
Wed, 23 Sep 2009 09:33:43 +0000 (11:33 +0200)
committerPeter Palfrader <peter@palfrader.org>
Wed, 23 Sep 2009 09:33:43 +0000 (11:33 +0200)
bin/update-wiki

index 3547c28..6847b0e 100755 (executable)
@@ -12,6 +12,12 @@ UPDATE=1
 
 [ "$UPDATE" != 1 ] || ( cd "$WC" && env -i git pull )
 
+if [ "$UPDATE" != 1 ]; then
+       GITPLUGIN=""
+else
+       GITPLUGIN="--plugin git"
+fi
+
 env -i ikiwiki \
        --timeformat '%F' \
        --wikiname 'DSA' \
@@ -21,15 +27,15 @@ env -i ikiwiki \
        --templatedir "$WC/templates" \
        --no-discussion \
        --refresh \
-        --atom \
-        --rss \
+       --atom \
+       --rss \
        --plugin template \
        --plugin toggle \
        --plugin inline \
        --plugin sidebar \
        --plugin table \
        --plugin creole \
-       --plugin git \
+       $GITPLUGIN \
        --disable-plugin openid \
        --disable-plugin sandbox \
        --disable-plugin passwordauth \