21 lines
527 B
Bash
Executable File
21 lines
527 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 ""
|
|
python3 pkgutils.py clean-assets
|
|
python3 pkgutils.py qtlrelease manual sample
|
|
|
|
echo ""
|
|
echo " Building Linux Snapshots"
|
|
echo "================================================================================"
|
|
echo ""
|
|
python3 pkgutils.py build-ubuntu --sign --snapshot
|