mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
ci/actions/build: check error numerically
This commit is contained in:
parent
b2a158bf32
commit
bf9084246a
1 changed files with 1 additions and 1 deletions
2
.github/actions/build/action.yml
vendored
2
.github/actions/build/action.yml
vendored
|
@ -92,6 +92,6 @@ runs:
|
||||||
echo "$ok build groups succeeded"
|
echo "$ok build groups succeeded"
|
||||||
echo "$error build groups failed"
|
echo "$error build groups failed"
|
||||||
) >&2
|
) >&2
|
||||||
if [ $error ]; then
|
if [ "$error" -gt 0 ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue