mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
COVERAGE=$(sed -nE 's/.*>([0-9]{1,3})%<.*/\1/p' docs/coverage.svg | head -1)
|
|
|
|
if (( $COVERAGE >= $COVERAGE_REQUIRED )) then
|
|
exit 0;
|
|
else
|
|
echo "Coverage: $COVERAGE/$COVERAGE_REQUIRED%";
|
|
exit 1;
|
|
fi |