Remove extraneous space in get_github_status

This commit is contained in:
Alexander Bantyev 2022-09-14 01:36:16 +04:00
parent 54bdb27773
commit a2a0b6233f
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5

View File

@ -1817,7 +1817,7 @@
| (($result.null//0) + ($result.PENDING//0)) as $running | (($result.null//0) + ($result.PENDING//0)) as $running
| (($result.SUCCESS//0) + ($result.NEUTRAL//0)) as $success | (($result.SUCCESS//0) + ($result.NEUTRAL//0)) as $success
| (($result.FAILURE//0) + ($result.ERROR//0)) as $failure | (($result.FAILURE//0) + ($result.ERROR//0)) as $failure
| if $state == "PENDING" or $state == "EXPECTED" then [" "] elif $state == "SUCCESS" then [""] elif $state == "FAILURE" or $state == "ERROR" then [""] else ["(?)"] end | if $state == "PENDING" or $state == "EXPECTED" then [""] elif $state == "SUCCESS" then [""] elif $state == "FAILURE" or $state == "ERROR" then [""] else ["(?)"] end
+ if $waiting > 0 then ["",$waiting|tostring] else [] end + if $waiting > 0 then ["",$waiting|tostring] else [] end
+ if $running > 0 then ["",$running|tostring] else [] end + if $running > 0 then ["",$running|tostring] else [] end
+ if $success > 0 then ["",$success|tostring] else [] end + if $success > 0 then ["",$success|tostring] else [] end