Files
LCE-Qt-Launcher/scripts/clean.sh
xgui4 47929b748c Update nightly workflow, clean scripts, and FreeBSD port files
- Refine Flatpak development notes in nightly.yml
- Adjust FreeBSD port categories in Makefile
- Change install script to require sudo for makesum
- Add contentInstaller to clean scripts for Qt UI resources
- Introduce distinfo file for FreeBSD port
2026-05-16 22:00:53 -04:00

27 lines
683 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "Removing the Nuitka compilation folder"
rm -rf "dist"
echo "Removing the Nuitka compilation folder finished"
echo "Removing the compilated Qt UI and Qt Ressource files"
QT_RESSOURCE="res_rc"
QT_UI_ARRAY=("system_info" "form" "instance" "settingDialog" "about" "contentInstaller")
echo "Removing the compilated Qt Ressource file"
rm "src/lce_qt_launcher/$QT_RESSOURCE.py"
echo "done"
for QT_UI in "${QT_UI_ARRAY[@]}"
do
echo "Removing the compilated ui_$QT_UI.py Qt UI file"
rm "src/lce_qt_launcher/ui_$QT_UI.py"
echo "done"
done
echo "Removing every pycaches filed"
find . -name '__pycache__' -print0 | xargs -0 rm -rf
echo "done"