Fixing building scripts.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
6fd34f3a33
commit
ed48e87a97
4 changed files with 5 additions and 5 deletions
|
@ -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 ../../
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 ../../
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Buiilding translations
|
||||
# Building translations
|
||||
cd "LogarithmPlotter/i18n/"
|
||||
bash release.sh
|
||||
cd ../../
|
||||
|
|
Loading…
Reference in a new issue