Closed KingAkeem closed 6 years ago
Merging #30 into master will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## master #30 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 13 13
Lines 536 536
=====================================
Hits 536 536
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 69dd72f...c32d115. Read the comment docs.
Good find! But instead of using a modified command to make it work on a different OS, I think we should use those commands that work the same on multiple OSs.
So I suggest you change the sed -i ...
line to the following:
sed "/#include \"*\"/d" "$release_file" > "$release_file.tmp"
mv "$release_file.tmp" "$release_file"
Thank you for contributing! :+1:
Mac OS uses a different
sed
command from GNU. In order to use the-i
flag you must pass the extension along with it so I added the.hpp
extension if darwin is detected as the OS.