ikiwiki-transition: Fix command-line processing so the prefix_directives transition works again.
parent
8cafbc5de6
commit
1aab048e81
|
@ -1,10 +1,15 @@
|
||||||
ikiwiki (2.54) UNRELEASED; urgency=low
|
ikiwiki (2.54) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
[ Joey Hess ]
|
||||||
* Make it possible to load setup files w/o running them. Code
|
* Make it possible to load setup files w/o running them. Code
|
||||||
needing to do so can call IkiWiki::Setup::load, which will return
|
needing to do so can call IkiWiki::Setup::load, which will return
|
||||||
a hash of values.
|
a hash of values.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Wed, 09 Jul 2008 22:27:19 -0400
|
[ Josh Triplett ]
|
||||||
|
* ikiwiki-transition: Fix command-line processing so the prefix_directives
|
||||||
|
transition works again.
|
||||||
|
|
||||||
|
-- Josh Triplett <josh@freedesktop.org> Wed, 09 Jul 2008 21:30:33 -0700
|
||||||
|
|
||||||
ikiwiki (2.53) unstable; urgency=low
|
ikiwiki (2.53) unstable; urgency=low
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ my $mode=shift;
|
||||||
if ($mode eq 'prefix_directives') {
|
if ($mode eq 'prefix_directives') {
|
||||||
prefix_directives(@ARGV);
|
prefix_directives(@ARGV);
|
||||||
}
|
}
|
||||||
if ($mode eq 'hashpassword') {
|
elsif ($mode eq 'hashpassword') {
|
||||||
hashpassword(@ARGV);
|
hashpassword(@ARGV);
|
||||||
}
|
}
|
||||||
elsif ($mode eq 'indexdb') {
|
elsif ($mode eq 'indexdb') {
|
||||||
|
|
Loading…
Reference in New Issue