Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update URL
[git.ikiwiki.info.git]
/
ikiwiki-calendar.in
diff --git
a/ikiwiki-calendar.in
b/ikiwiki-calendar.in
index 6b6f693b3ec838b0a52aa402198880a02e9ebfc9..60df99855df63a8a248b78616911359035477a1a 100755
(executable)
--- a/
ikiwiki-calendar.in
+++ b/
ikiwiki-calendar.in
@@
-15,7
+15,10
@@
GetOptions(
"force" => \$force,
) || usage();
my $setup=shift || usage();
"force" => \$force,
) || usage();
my $setup=shift || usage();
-my $pagespec=shift;
+my $pagespec;
+if (@ARGV && $ARGV[0] !~ /^\d+$/) {
+ $pagespec=shift;
+}
my $startyear=shift || 1900+(localtime(time))[5];
my $endyear=shift || $startyear;
my $startyear=shift || 1900+(localtime(time))[5];
my $endyear=shift || $startyear;
@@
-56,7
+59,8
@@
foreach my $y ($startyear..$endyear) {
}
}
}
}
-IkiWiki::rcs_commit_staged(
gettext("calendar update"), undef, undef
)
+IkiWiki::rcs_commit_staged(
message => gettext("calendar update")
)
if $config{rcs};
if $config{rcs};
-system("ikiwiki", "-setup", $setup, "-refresh");
+exec("ikiwiki", "-setup", $setup, "-refresh");
+die "failed to run ikiwiki -setup $setup -refresh\n";