We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a60e651 commit 9b301feCopy full SHA for 9b301fe
1 file changed
Makefile
@@ -78,7 +78,11 @@ docsite/source/index.rst: docsite/source/index.rst.in README.rst VERSION
78
$(ASCII2MAN)
79
80
viewdocs: docs
81
- xdg-open docsite/build/html/index.html
+ @if [ "$$(uname)" = "Darwin" ]; then \
82
+ open docsite/build/html/index.html; \
83
+ else \
84
+ xdg-open docsite/build/html/index.html; \
85
+ fi
86
87
viewcover:
88
xdg-open cover/index.html
0 commit comments