mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-16 03:50:39 +00:00
13 lines
326 B
Bash
Executable File
13 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
scripts/prepare.sh
|
|
|
|
echo "Beginning the Nuitka compilation"
|
|
hatch run python -m nuitka --standalone --assume-yes-for-download --output-dir=dist src/lce_qt_launcher/main.py
|
|
echo "done"
|
|
|
|
echo "Compressing the Nuitka compressions"
|
|
tar -czf LCE-Qt-Launcher-Linux.tar.gz -C dist/main.dist .
|
|
echo "done" |