Skip to content

Commit

Permalink
Fix: App naming in linux
Browse files Browse the repository at this point in the history
  • Loading branch information
itsm3abena committed Dec 14, 2024
1 parent a14ab97 commit 43dc77d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build_deb.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


app_version = __version__.lstrip("v")
app_name = __name__
app_name = "HDWallet"
app_description = __description__
maintainer = __author__

Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import platform

app_name = info.__name__
app_name = "HDWallet"

# Get platform info
platform_name = platform.system().lower()
Expand Down

0 comments on commit 43dc77d

Please sign in to comment.