CHANGELOG was not bundled with flatpak, trying to fix that.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2022-01-29 19:04:37 +01:00
parent 77374cf5f4
commit 64e5770ceb
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160

View file

@ -85,6 +85,8 @@ def package_data():
for d,folders,files in os.walk("LogarithmPlotter/i18n"):
d = d[17:]
pkg_data += [os.path.join(d, f) for f in files]
if "FLATPAK_INSTALL" in os.environ:
pkg_data += ["CHANGELOG.md"]
return pkg_data