diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-03-19 15:35:21 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-03-19 15:35:21 -0400 |
commit | bbe1f2e493f009b49aba6ab83304f9484e37c61d (patch) | |
tree | 2aaa636b8a2b48d7d2cf0c05ac3e7e119172e3ff /IkiWiki/Setup | |
parent | 522daa7ea8111482701ce222800096edaf8eb2d2 (diff) |
move generic comment into IkiWiki::Setup
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r-- | IkiWiki/Setup/Standard.pm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/IkiWiki/Setup/Standard.pm b/IkiWiki/Setup/Standard.pm index 9c177e497..92e97c4b4 100644 --- a/IkiWiki/Setup/Standard.pm +++ b/IkiWiki/Setup/Standard.pm @@ -12,20 +12,15 @@ sub import { IkiWiki::Setup::merge($_[1]); } -sub gendump ($$) { +sub gendump ($@) { my $class=shift; - my $description=shift; "#!/usr/bin/perl", - "# $description", "#", - "# Passing this to ikiwiki --setup will make ikiwiki generate", - "# wrappers and build the wiki.", - "#", - "# Remember to re-run ikiwiki --setup any time you edit this file.", + (map { "# $_" } @_), "use IkiWiki::Setup::Standard {", IkiWiki::Setup::commented_dump(\&dumpline), - "}"; + "}" } sub dumpline ($$$$) { |