diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-03-17 23:21:35 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-03-17 23:21:35 -0400 |
commit | cbc5fcff6182e620578fff619ae021eb5b30024c (patch) | |
tree | 99e006272d40843e311353de4e4c21ce15f5c42c /IkiWiki.pm | |
parent | c4e46dfeba11aee2feec7475970cfdb7591c1943 (diff) | |
download | ikiwiki-cbc5fcff6182e620578fff619ae021eb5b30024c.tar ikiwiki-cbc5fcff6182e620578fff619ae021eb5b30024c.tar.gz |
set exclude example to match *.private and improve its description
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r-- | IkiWiki.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 1c2ddbd91..a782e463a 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -338,7 +338,7 @@ sub getsetup () { type => "string", default => undef, example => '^\.htaccess$', - description => "regexp of normally ignored source files to include", + description => "regexp of normally excluded files to include", advanced => 1, safe => 0, # regexp rebuild => 1, @@ -346,8 +346,8 @@ sub getsetup () { exclude => { type => "string", default => undef, - example => '\.wav$', - description => "regexp of source files to ignore", + example => '^*\.private$', + description => "regexp of files that should be skipped", advanced => 1, safe => 0, # regexp rebuild => 1, |