mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
compound expression returns 1 if expression evaluates to 0
This commit is contained in:
parent
9caffee9b0
commit
d9d1f5aac9
1 changed files with 2 additions and 2 deletions
4
.github/actions/build/action.yml
vendored
4
.github/actions/build/action.yml
vendored
|
@ -78,11 +78,11 @@ runs:
|
|||
--log-format raw
|
||||
then
|
||||
echo "incrementing ok from $ok"
|
||||
(( ok++ ))
|
||||
((++ok))
|
||||
echo "incremented ok to $ok"
|
||||
else
|
||||
echo "incrementing error from $error"
|
||||
(( error++ ))
|
||||
((++error))
|
||||
echo "incremented error to $error"
|
||||
if [ -z "$keep_going_flag" ]; then
|
||||
echo "Failing fast!"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue