compare trueCount against length of stable branches
This commit is contained in:
parent
d400a4aedf
commit
068f2ad179
@ -125,8 +125,9 @@ sub figure_status {
|
|||||||
$trueCount += 1 if $status->{info}->{$s} == JSON::true;
|
$trueCount += 1 if $status->{info}->{$s} == JSON::true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$status->{state} = "complete" if $dataLen == $trueCount;
|
$status->{state} = "complete"
|
||||||
$status->{state} = "open" if @{$list} == 0;
|
if ( $dataLen == $trueCount && @{$list} >= @stable );
|
||||||
|
$status->{state} = "open" if @{$list} == 0;
|
||||||
|
|
||||||
return ( $release, $status );
|
return ( $release, $status );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user