Skip to content

Commit

Permalink
-prune doesn't actually work on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
tnek committed Aug 10, 2021
1 parent 9b59be7 commit fa904c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coverage/generate_cov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function build() {
}

function generate_lcov() {
object_files=$(find -L $(bazel info bazel-bin) -type f -exec file -L {} \; -prune -false -o -name 'testdata/*' | grep "Mach-O" | sed 's,:.*,,' | grep -v 'testdata')
object_files=$(find -L $(bazel info bazel-bin) -type f -exec file -L {} \; | grep "Mach-O" | sed 's,:.*,,' | grep -v 'testdata')
bazel_base=$(bazel info execution_root)

true > $COV_FILE
Expand Down

0 comments on commit fa904c1

Please sign in to comment.