Skip to content

Commit

Permalink
fix msi build
Browse files Browse the repository at this point in the history
  • Loading branch information
ianopolous committed Jan 20, 2025
1 parent 8e717db commit 562decf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packager/PackagePeergos.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static void main(String[] a) throws Exception {
"--app-version", VERSION);
String artifact = Files.list(Paths.get(""))
.map(f -> f.toString())
.filter(n -> n.endsWith(".exe") || n.endsWith("deb") || n.endsWith("dmg"))
.filter(n -> n.endsWith(".exe") || n.endsWith(".msi") || n.endsWith("deb") || n.endsWith("dmg"))
.findFirst().get();
if (OS.equals("darwin")) {
String withArch = artifact.substring(0, artifact.length() - 4) + "_" + ARCH + artifact.substring(artifact.length() - 4);
Expand Down

0 comments on commit 562decf

Please sign in to comment.