Fixing building scripts.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2022-01-24 16:16:58 +01:00
parent 6fd34f3a33
commit ed48e87a97
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
4 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ rm $(find . -name "*.qmlc")
rm $(find . -name "*.pyc")
python3 -m pip install -U pyinstaller
# Buiilding translations
# Building translations
cd "LogarithmPlotter/i18n/"
bash release.sh
cd ../../

View file

@ -1,9 +1,9 @@
rem Need pyinstaller >= 4.3, or there is an issue regarding the PATH of the building.
python -m pip install -U pyinstaller>=4.3
rem Buiilding translations
rem Building translations
cd "LogarithmPlotter\i18n"
bash release.sh
cmd release.sh
cd ..\..
pyinstaller --add-data "logplotter.svg;." --add-data "LogarithmPlotter/qml;qml" --add-data "LogarithmPlotter/i18n;i18n" --noconsole LogarithmPlotter/logarithmplotter.py --icon=win/logarithmplotter.ico -n logarithmplotter

View file

@ -4,7 +4,7 @@ rm $(find . -name "*.qmlc")
rm $(find . -name "*.pyc")
wine python -m pip install -U pyinstaller
# Buiilding translations
# Building translations
cd "LogarithmPlotter/i18n/"
bash release.sh
cd ../../

View file

@ -1,6 +1,6 @@
#!/bin/bash
# Buiilding translations
# Building translations
cd "LogarithmPlotter/i18n/"
bash release.sh
cd ../../