Skip to content

Commit

Permalink
Fix make lcoc when build dir is missing
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Heimes <cheimes@redhat.com>
  • Loading branch information
Christian Heimes committed Nov 25, 2017
1 parent 0079025 commit e78aeb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ clean:
.PHONY: lcov-clean lcov-coverage lcov-report lcov-open lcov
lcov-clean:
rm -rf $(LCOV_INFO) $(LCOV_REPORT)
find build -name '*.gc??' -delete
if [ -d build ]; then find build -name '*.gc??' -delete; fi

lcov-coverage:
WITH_GCOV=1 tox -e py27,py36
Expand Down

0 comments on commit e78aeb7

Please sign in to comment.