22 lines
538 B
Bash
Executable File
22 lines
538 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -f pkgutils.py ]; then
|
|
echo "Must be called from the root folder of the source"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo " Building Dependencies"
|
|
echo "================================================================================"
|
|
echo ""
|
|
uv run pkgutils.py build-assets
|
|
uv run pkgutils.py icons optional
|
|
|
|
echo ""
|
|
echo " Building Linux Packages"
|
|
echo "================================================================================"
|
|
echo ""
|
|
uv run pkgutils.py build-deb --sign
|
|
uv run pkgutils.py build-ubuntu --sign
|