We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca8ce3 commit ab93118Copy full SHA for ab93118
.gitattributes
@@ -23,6 +23,8 @@
23
24
/README.md export-ignore
25
26
+/Makefile export-ignore
27
+
28
# Enforce checkout with linux lf consistent over all platforms
29
*.html text eol=lf
30
*.css text eol=lf
Makefile
@@ -0,0 +1,13 @@
1
+mkdocs-serve:
2
+ @if command -v mkdocs >/dev/null ; then \
3
+ mkdocs serve; \
4
+ else \
5
+ echo "mkdocs is not installed, see https://docs.openmage.org/developers/mkdocs/" && exit 2; \
6
+ fi; \
7
8
+phpunit-serve:
9
+ @if test -f build/coverage/index.html ; then \
10
+ xdg-open build/coverage/index.html; \
11
12
+ echo "phpunit coverage not found, run \"composer run phpunit:coverage-local\"" && exit 2; \
13
0 commit comments