Skip to content

Commit

Permalink
updater: Download os specific app jar
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Jun 24, 2024
1 parent 25d54ab commit c40e515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/src/main/java/bisq/updater/UpdaterUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static String getInstallerFileName(String version) {
}

public static String getJarFileName(String version) {
return "desktop-app-" + version + "-all.jar";
return "desktop-app-" + version + "-" + System.getProperty("os.name").toLowerCase() + "-all.jar";
}

public static Optional<String> readVersionFromVersionFile(String userDataDir) {
Expand Down

0 comments on commit c40e515

Please sign in to comment.