From: Gergely Imreh Date: Mon, 5 Aug 2013 13:45:01 +0000 (+0800) Subject: Fix example in docs that wouldn't work in practice X-Git-Tag: v0.9~180^2^2 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f31ec3c2;p=brevno-suite%2Fhugo Fix example in docs that wouldn't work in practice The pflag package used in hugo has to use the "=" sign for double dash options such as --source. Thus the original example `--source ~/mysite` is already incorrect. Adding the = sign though woul not fix things in this case, since `--source=~/mysite` does not get resolved to /home/username/mysite, but looks for the ./~/mysite directory within the current directory. To resolve this, either the directory name has to be changed in the docs not to use the "~" sign, or have to change to use the single dash version of the command line flag. The latter seems to be more in line with the rest of the example. Leaving `--watch` as a double dash option to minimize the change, though it could be either way, since the follow up example uses the single dash version of both. --- diff --git a/docs/content/doc/usage.md b/docs/content/doc/usage.md index 4de76089..b0d862e0 100644 --- a/docs/content/doc/usage.md +++ b/docs/content/doc/usage.md @@ -37,7 +37,7 @@ immediately, tell Hugo to watch for changes. **It will recreate the site faster than you can tab over to your browser to view the changes.** - $ hugo --source ~/mysite --watch + $ hugo -s ~/mysite --watch Watching for changes. Press ctrl+c to stop 15 pages created 0 tags created