Fix example in docs that wouldn't work in practice
authorGergely Imreh <imrehg@gmail.com>
Mon, 5 Aug 2013 13:45:01 +0000 (21:45 +0800)
committerGergely Imreh <imrehg@gmail.com>
Mon, 5 Aug 2013 13:45:01 +0000 (21:45 +0800)
commitf31ec3c2805303625888716fab9f3d86fc97c8a5
treeefdd610e98e90cfe100a7c924dd85b29efbe7506
parent57b206ca115bf15f0525b1d7279016cdf947f016
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.
docs/content/doc/usage.md