Handle failure in push.pl slightly better
This commit is contained in:
parent
5138bdded4
commit
39b21e67ba
2
push.pl
2
push.pl
|
|
@ -118,5 +118,5 @@ while (my $repo = shift) { # '/library/hylang', '/tianon/perl', etc
|
||||||
description => $hubShort,
|
description => $hubShort,
|
||||||
full_description => $hubLong,
|
full_description => $hubLong,
|
||||||
});
|
});
|
||||||
die 'patch to ' . $repoUrl . ' failed' unless $repoPatch->success;
|
warn 'patch to ' . $repoUrl . ' failed: ' . $repoPatch->res->text and next unless $repoPatch->success;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue