fix build and better command

This commit is contained in:
xgui4
2026-04-26 11:56:17 -04:00
parent 8966d669bb
commit 5a60241687
6 changed files with 22 additions and 22 deletions

View File

@@ -13,15 +13,15 @@ QT_UI_ARRAY=("system_info" "form" "instance" "settingDialog" "about")
echo "Removing the compilated Qt Ressource file"
rm "src/lce_qt_launcher/$QT_RESSOURCE.py"
echo "Removing the compilated Qt Ressource file finished"
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 "Removing the compilated ui_$QT_UI.py Qt UI file finished"
echo "done"
done
echo "Removing every pycaches filed"
find . -n '__pycache__' -print0 | xargs rm -rf
echo "Removing every pycaches done"
echo "done"