Skip to content

Commit 2cd2c45

Browse files
committed
Update
1 parent 22dc99a commit 2cd2c45

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

images/mkdocs/bin/mkdocs-build

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
set -e
32

43
cp /app/package.json .
54
cp /app/gulpfile.js .
@@ -9,4 +8,3 @@ python /app/scripts/generate.py "$@"
98

109
mkdocs build --clean
1110
cp -af public/. site/
12-
npx gulp --input-dir site --output-dir dist

images/mkdocs/bin/mkdocs-gulp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
npx gulp --input-dir site --output-dir dist
4+
rm -rf site
5+
mv dist site
6+

images/mkdocs/bin/mkdocs-serve

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
2-
set -e
2+
33
python /app/scripts/generate.serve.py "$@"
44
mkdocs serve --dirty --livereload --dev-addr 0.0.0.0:8000

0 commit comments

Comments
 (0)