Files
2024-08-23 19:10:15 +03:00

19 lines
368 B
Bash
Executable File

#!/bin/bash
cd "$(dirname "$0")" || exit
if [ -d "./althea/usr/lib" ]; then
rm -rf "./AltServer/usr/lib"
fi
if [ -d "./dist" ]; then
rm -rf "./dist"
fi
pyinstaller althea.spec --clean
cp -R ./resources ./dist/althea
mkdir -p "./althea/usr/lib"
cp -R ./dist/althea ./althea/usr/lib
chmod -R 0775 althea
dpkg-deb --build --root-owner-group althea althea.deb