From 5d000ca2904e84c12c255a7b930fc9c38639c580 Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Wed, 26 Jun 2013 06:39:09 -0700 Subject: [PATCH] Add more missing -s flags to tips doc page --- docs/tips.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tips.rst b/docs/tips.rst index e29f73d2..430d6488 100644 --- a/docs/tips.rst +++ b/docs/tips.rst @@ -49,7 +49,7 @@ To publish a Pelican site as User Pages you need to *push* the content of the Again, you can take advantage of ``ghp-import``:: - $ pelican content -o output pelicanconf.py + $ pelican content -o output -s pelicanconf.py $ ghp-import output $ git push git@github.com:elemoine/elemoine.github.com.git gh-pages:master @@ -71,7 +71,7 @@ To automatically update your Pelican site on each commit you can create a post-commit hook. For example, you can add the following to ``.git/hooks/post-commit``:: - pelican pelican content -o output pelicanconf.py && ghp-import output && git push origin gh-pages + pelican pelican content -o output -s pelicanconf.py && ghp-import output && git push origin gh-pages Tip #2: