From b719800bb92e94617de98b78416a7a64d32ed9de Mon Sep 17 00:00:00 2001 From: p4bl0 Date: Mon, 26 Jul 2010 11:45:37 +0200 Subject: changed default public dir to '_public' instead of '.' --- install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index 81abd42..82e26b4 100644 --- a/install.sh +++ b/install.sh @@ -36,14 +36,14 @@ fugitive_install() { git init >/dev/null echo "done." echo -n "Creating default directory tree... " - mkdir -p _drafts _articles _templates + mkdir -p _drafts _articles _templates _public echo "done." - echo -n "Adding default directory paths and settings to git config... " - git config --add --path fugitive.blog-url "http://localhost/fugitive/" + echo -n "Adding default settings to git config... " + git config --add fugitive.blog-url "http://localhost/fugitive/" git config --add --path fugitive.templates-dir "_templates" git config --add --path fugitive.articles-dir "_articles" - git config --add --path fugitive.public-dir "." - git config --add --path fugitive.preproc "" + git config --add --path fugitive.public-dir "_public" + git config --add fugitive.preproc "" echo "done." echo -n "Writing default template files... " fugitive_write_template > _templates/article.html <