Skip to content

Commit 967f3f4

Browse files
committed
use python module webbrowser instead of Mac-only open command
1 parent e2789d1 commit 967f3f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ coverage:
4545
coverage run --source dateparser 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/dateparser.rst
5252
rm -f docs/modules.rst
5353
sphinx-apidoc -o docs/ dateparser
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)