diff --git a/scripts/checks/coverage.sh b/scripts/checks/coverage.sh index a273c0669..fd8b9e843 100755 --- a/scripts/checks/coverage.sh +++ b/scripts/checks/coverage.sh @@ -14,7 +14,11 @@ if [ "${CI:-"false"}" == "true" ]; then # Foundry coverage forge coverage --report lcov --ir-minimum # Remove zero hits - sed -i '/,0/d' lcov.info + if [[ "$OSTYPE" == "darwin"* ]]; then + sed -i '' '/,0/d' lcov.info + else + sed -i '/,0/d' lcov.info + fi fi # Reports are then uploaded to Codecov automatically by workflow, and merged.