summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorp4bl0 <pablo@rauzy.name>2010-07-24 03:43:05 +0200
committerp4bl0 <pablo@rauzy.name>2010-07-24 03:43:05 +0200
commit04b09eba7ad1218cf2512cdf754b731f04691b34 (patch)
treef6a9e487cb17f8f749713b80c12f19bf2309021d /install.sh
parent3d835a6cbaad82557030d068f1f063ff9e861c2f (diff)
fixed paths accoring to new directory structure
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index 610fd01..4320f7e 100644
--- a/install.sh
+++ b/install.sh
@@ -40,10 +40,10 @@ fugitive_install() {
git config --add --path fugitive.public-dir "."
echo "done."
echo -n "Writing default template files... "
- fugitive_write_template > fugitive/templates/article.html <<EOF
+ fugitive_write_template > _templates/article.html <<EOF
#INCLUDE:article.html#
EOF
- fugitive_write_template > fugitive/templates/archives.html <<EOF
+ fugitive_write_template > _templates/archives.html <<EOF
#INCLUDE:archives.html#
EOF
echo "done."
@@ -57,7 +57,7 @@ EOF
echo "done."
fugitive_install_hooks
echo -n "Importing files into git repository... "
- git add fugitive/templates/* fugitive.css >/dev/null
+ git add _templates/* fugitive.css print.css >/dev/null
git commit -m "fugitive inital import" >/dev/null
echo "done."
echo -n "Preventing git to track temp files... "