Skip to content

Commit 5d300c7

Browse files
committed
Subtle fix in Makefile
1 parent 85d9754 commit 5d300c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ testloop:
1717

1818
cov cover coverage:
1919
nosetests -s --with-cover --cover-html --cover-branches --cover-html-dir ./coverage $(FLAGS) ./tests/
20-
echo "open file://`pwd`/coverage/index.html"
20+
@echo "open file://`pwd`/coverage/index.html"
2121

2222
clean:
2323
rm -rf `find . -name __pycache__`
@@ -33,7 +33,7 @@ clean:
3333
rm -rf build
3434

3535
doc:
36-
cd docs && make html
37-
echo "open file://`pwd`/docs/_build/html/index.html"
36+
make -C docs html
37+
@echo "open file://`pwd`/docs/_build/html/index.html"
3838

3939
.PHONY: all build venv flake test vtest testloop cov clean doc

0 commit comments

Comments
 (0)