mirror of
https://github.com/fruworg/infrastructure.git
synced 2024-11-16 05:17:17 +03:00
9 lines
230 B
Bash
9 lines
230 B
Bash
#!/bin/bash
|
|
HUGO_DIR=/tmp/hugo
|
|
rm -r "$HUGO_DIR"
|
|
mkdir "$HUGO_DIR"
|
|
cd "$HUGO_DIR"
|
|
git clone https://github.com/fruworg/fruworg.github.io --recurse-submodules -j8 .
|
|
hugo -s /tmp/hugo --destination /var/caddy/hugo
|
|
rm -r "$HUGO_DIR"
|