We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d66f684 commit dc16776Copy full SHA for dc16776
src/main/java/io/github/fvarrui/javapackager/packagers/GenerateAppImage.java
@@ -13,7 +13,7 @@
13
public class GenerateAppImage extends ArtifactGenerator<LinuxPackager> {
14
15
private static final int IMAGETOOL_VERSION = 13;
16
- private static final String IMAGETOOL_URL = "https://github.com/AppImage/AppImageKit/releases/download/%d/appimagetool-%s.AppImage".formatted(IMAGETOOL_VERSION, SystemUtils.OS_ARCH);
+ private static final String IMAGETOOL_URL = "https://github.com/AppImage/AppImageKit/releases/download/" + IMAGETOOL_VERSION + "/appimagetool-" + SystemUtils.OS_ARCH + ".AppImage";
17
18
public GenerateAppImage() {
19
super("AppImage");
0 commit comments