Skip to content

Commit

Permalink
fix mac packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
ianopolous committed Jan 29, 2025
1 parent 6dc73fb commit 0879a6b
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 @@ -57,7 +57,7 @@ else if (isMac)
"--app-version", VERSION);
String artifact = Files.list(Paths.get(""))
.map(f -> f.toString())
.filter(n -> n.endsWith(".exe") || n.endsWith(".msi") || n.endsWith("deb") || n.endsWith("dmg"))
.filter(n -> n.endsWith(".exe") || n.endsWith(".msi") || n.endsWith("deb") || n.endsWith("dmg") || n.endsWith("pkg"))
.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 0879a6b

Please sign in to comment.