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