diff --git a/build_deb.py b/build_deb.py index ec381fb..45d8b27 100644 --- a/build_deb.py +++ b/build_deb.py @@ -30,7 +30,7 @@ app_version = __version__.lstrip("v") -app_name = __name__ +app_name = "HDWallet" app_description = __description__ maintainer = __author__ @@ -43,7 +43,7 @@ try: subprocess.run(["python3", "setup.py", "bdist_appimage"], check=True) - dist_appimage_files = glob(f"dist/{app_name}-{app_version}*.AppImage") + dist_appimage_files = glob(f"dist/*.AppImage") if dist_appimage_files: appimage_output_path = dist_appimage_files[0] else: diff --git a/setup.py b/setup.py index 1aa4f02..b561fae 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ import platform -app_name = info.__name__ +app_name = "HDWallet" # Get platform info platform_name = platform.system().lower()