diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-05 19:16:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-05 19:16:24 -0400 |
commit | 4f22989be1d0f901c4eb7b2be66e8483b3de30fa (patch) | |
tree | e46cde4f4715ef567231605eaac692fe929bb03e | |
parent | 932557732fc7df9f41db3715acee5af292118ece (diff) |
don't set values for verbose and syslog by default
Setting the values in the setup file by default makes it annoyingly hard to
override them at the command line (since setup files override the command
line).
Both default to off if no value is set.
-rw-r--r-- | IkiWiki.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 207bf3079..bf4a0d415 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -172,14 +172,14 @@ sub getsetup () { #{{{ }, verbose => { type => "boolean", - default => 0, + example => 1, description => "display verbose messages when building?", safe => 1, rebuild => 0, }, syslog => { type => "boolean", - default => 0, + example => 1, description => "log to syslog?", safe => 1, rebuild => 0, |