10 lines
145 B
Bash
10 lines
145 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
git clone "${REPO:-'https://git.tek.govt.hu/dowerx/www.git'}" /src
|
||
|
|
||
|
cd /src
|
||
|
|
||
|
mkdocs build --site-dir "${SITE_DIR:-'/site'}"
|