mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-01-21 03:55:36 +01:00
15 lines
271 B
Bash
Executable File
15 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$(realpath "$0")")/Lib/Globals.sh"
|
|
cd "${swd}/.."
|
|
|
|
export sitocttEnv=Offline
|
|
export HUGO_ENV=production
|
|
sh "${swd}/Clean.sh"
|
|
sh "${swd}/Update.sh"
|
|
|
|
cd ./build/public
|
|
#zip -9 -r ./offline.zip *
|
|
7z a -tzip -mcp=437 -mx9 ./offline.zip *
|
|
|
|
cd "${owd}"
|