Skip to content

Commit a71c5c5

Browse files
committed
Fix syntax error in Makefile when publishing code coverage results
1 parent 5510507 commit a71c5c5

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ script:
1414
after_script:
1515
- make docs_report
1616
after_success:
17-
- make push_docs_report
17+
- bash <(curl -s https://codecov.io/bash)

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ unit_test:
4747
docs_report:
4848
mix inch.report
4949

50-
push_docs_report:
51-
bash <(curl -s https://codecov.io/bash)
52-
5350
priv:
5451
mkdir -p priv
5552

@@ -64,4 +61,4 @@ priv/matrix.so: c_src/matrix.o
6461

6562
clean:
6663
$(RM) $(NIF) src/*.o
67-
64+

0 commit comments

Comments
 (0)