Handle failure in push.pl slightly better

This commit is contained in:
Tianon Gravi 2015-08-07 16:38:18 -07:00
parent 5138bdded4
commit 39b21e67ba
1 changed files with 1 additions and 1 deletions

View File

@ -118,5 +118,5 @@ while (my $repo = shift) { # '/library/hylang', '/tianon/perl', etc
description => $hubShort,
full_description => $hubLong,
});
die 'patch to ' . $repoUrl . ' failed' unless $repoPatch->success;
warn 'patch to ' . $repoUrl . ' failed: ' . $repoPatch->res->text and next unless $repoPatch->success;
}