mirror of https://gitlab.com/octtspacc/sitoctt
10 lines
162 B
Bash
10 lines
162 B
Bash
|
#!/bin/sh
|
||
|
. "$(dirname "$(realpath "$0")")/Lib/Globals.sh"
|
||
|
cd "${swd}/.."
|
||
|
|
||
|
export HUGO_ENV=production
|
||
|
sh "${swd}/Update.sh"
|
||
|
sh "${swd}/Redirects.sh"
|
||
|
|
||
|
cd "${owd}"
|