mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-02-18 04:20:50 +01:00
11 lines
182 B
Bash
Executable File
11 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$(realpath "$0")")/Lib/Globals.sh"
|
|
cd "${swd}/.."
|
|
|
|
export HUGO_ENV=production
|
|
sh "${swd}/Clean.sh"
|
|
sh "${swd}/Build.sh"
|
|
sh "${swd}/Redirects.sh"
|
|
|
|
cd "${owd}"
|