mirror of https://github.com/apache/lucene.git
make script execution fail if rest api is inaccessible
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1134995 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
84c10b766b
commit
3887e4bb91
|
@ -674,7 +674,7 @@ sub setup_release_dates {
|
|||
'2.4.0' => '2008-10-06', '2.4.1' => '2009-03-09',
|
||||
'2.9.0' => '2009-09-23', '2.9.1' => '2009-11-06',
|
||||
'3.0.0' => '2009-11-25');
|
||||
my $project_info_json = get($project_info_url);
|
||||
my $project_info_json = get($project_info_url) || die "Unable to download $project_info_url";
|
||||
my $project_info = json2perl($project_info_json);
|
||||
for my $version (@{$project_info->{versions}}) {
|
||||
if ($version->{releaseDate}) {
|
||||
|
|
Loading…
Reference in New Issue