Compare commits
No commits in common. "b0090422413323f074d621253ce352d23122147b" and "54ce5605c4d911b3f80bba2c58ff27fd270590a4" have entirely different histories.
b009042241
...
54ce5605c4
2 changed files with 1 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# Giving pyinstaller another run
|
||||
rm $(find . -name "*.qmlc")
|
||||
rm -rf $(find . -name "*.pyc")
|
||||
rm $(find . -name "*.pyc")
|
||||
wine python -m pip install -U pyinstaller
|
||||
|
||||
# Building translations
|
||||
|
|
3
setup.py
3
setup.py
|
@ -78,9 +78,6 @@ def package_data():
|
|||
for d,folders,files in os.walk("LogarithmPlotter/qml"):
|
||||
d = d[17:]
|
||||
pkg_data += [os.path.join(d, f) for f in files]
|
||||
for d,folders,files in os.walk("LogarithmPlotter/i18n"):
|
||||
d = d[17:]
|
||||
pkg_data += [os.path.join(d, f) for f in files]
|
||||
return pkg_data
|
||||
|
||||
data_files = []
|
||||
|
|
Loading…
Reference in a new issue