mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-02-18 12:30:36 +01:00
15 lines
249 B
Bash
Executable File
15 lines
249 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$(realpath "$0")")/Lib/Globals.sh"
|
|
cd "${swd}/.."
|
|
|
|
sh "${swd}/Requirements.sh"
|
|
rm -rf ./dist
|
|
|
|
sh "${swd}/Produce.sh"
|
|
mv ./build/public ./dist
|
|
|
|
sh "${swd}/Package.sh"
|
|
mv ./build/public/sitoctt-offline.zip ./dist/
|
|
|
|
cd "${owd}"
|