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.
2 parents de99034 + 77bd0c4 commit cbe2490Copy full SHA for cbe2490
tools/build_web.cmd
@@ -1,3 +1,7 @@
1
@echo off
2
3
+if "%CI%" == "true" (
4
+ pip install -r web/requirements.txt
5
+)
6
+
7
python web/wikigen.py build
tools/build_web.sh
#!/bin/bash
+if [ "$CI" = "true" ]; then
+fi
0 commit comments