Skip to content

Commit ecf8dae

Browse files
committed
fixing the open command to use more portable webbrowser module
1 parent b541c8c commit ecf8dae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ coverage:
4545
coverage run --source skinfer setup.py test
4646
coverage report -m
4747
coverage html
48-
open htmlcov/index.html
48+
python -m webbrowser htmlcov/index.html
4949

5050
docs:
5151
rm -f docs/skinfer.rst
5252
rm -f docs/modules.rst
5353
sphinx-apidoc -o docs/ skinfer
5454
$(MAKE) -C docs clean
5555
$(MAKE) -C docs html
56-
echo Open in your browser: docs/_build/html/index.html
56+
python -m webbrowser docs/_build/html/index.html
5757

5858
release: clean
5959
python setup.py sdist upload

0 commit comments

Comments
 (0)