We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22dc99a commit 2cd2c45Copy full SHA for 2cd2c45
images/mkdocs/bin/mkdocs-build
@@ -1,5 +1,4 @@
1
#!/bin/bash
2
-set -e
3
4
cp /app/package.json .
5
cp /app/gulpfile.js .
@@ -9,4 +8,3 @@ python /app/scripts/generate.py "$@"
9
8
10
mkdocs build --clean
11
cp -af public/. site/
12
-npx gulp --input-dir site --output-dir dist
images/mkdocs/bin/mkdocs-gulp
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+npx gulp --input-dir site --output-dir dist
+rm -rf site
+mv dist site
6
images/mkdocs/bin/mkdocs-serve
@@ -1,4 +1,4 @@
python /app/scripts/generate.serve.py "$@"
mkdocs serve --dirty --livereload --dev-addr 0.0.0.0:8000
0 commit comments