Skip to content

Commit cbe2490

Browse files
Merge branch 'main' of github.com:multitheftauto/mtasa-wiki
2 parents de99034 + 77bd0c4 commit cbe2490

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tools/build_web.cmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
@echo off
22

3+
if "%CI%" == "true" (
4+
pip install -r web/requirements.txt
5+
)
6+
37
python web/wikigen.py build

tools/build_web.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
#!/bin/bash
22

3+
if [ "$CI" = "true" ]; then
4+
pip install -r web/requirements.txt
5+
fi
6+
37
python web/wikigen.py build

0 commit comments

Comments
 (0)