Skip to content

Commit

Permalink
linux: Fix AppImage build (#207)
Browse files Browse the repository at this point in the history
It seems the filename of the generated AppImage was changed after an
update to `LinuxDeploy`. Easy enough to fix.
  • Loading branch information
ids1024 authored Jul 14, 2023
1 parent aabc184 commit 494af63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linux/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@
f"--icon-file={ICON}",
"--plugin", "gtk",
"--output", "appimage"])
shutil.move(glob.glob(f"System76_Keyboard_Configurator-*-{ARCH}.AppImage")[0], f"{PKG}-{ARCH}.AppImage")
shutil.move(f"System76_Keyboard_Configurator-{ARCH}.AppImage", f"{PKG}-{ARCH}.AppImage")

0 comments on commit 494af63

Please sign in to comment.