Skip to content

Commit

Permalink
Fix "make coverage".
Browse files Browse the repository at this point in the history
Use makefile syntax, not bash syntax.
  • Loading branch information
arantius committed Nov 16, 2017
1 parent 5b7f50e commit afcf1b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -8,7 +8,7 @@ testonce:

coverage:
@npm run test -- --coverage --single-run
@echo file://$(echo $PWD/coverage/*/*.html)|sed -e 's/ /%20/g'
echo "file://$(shell ls $$PWD/coverage/*/*.html|sed -e 's/ /%20/g')"

xpi:
@sh package.sh
@sh package.sh

0 comments on commit afcf1b0

Please sign in to comment.