Skip to content

Commit

Permalink
Merge pull request #2629 from bisq-network/packaging_add_msi_support
Browse files Browse the repository at this point in the history
packaging: Add Windows MSI support
  • Loading branch information
HenrikJannsen authored Aug 17, 2024
2 parents ad59985 + c3b12c6 commit 769830e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ enum class PackageFormat(val fileExtension: String) {
DEB("deb"),
DMG("dmg"),
EXE("exe"),
MSI("msi"),
RPM("rpm")
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package bisq.gradle.packaging.jpackage.package_formats
import java.nio.file.Path

class WindowsPackage(private val resourcesPath: Path) : JPackagePackageFormatConfigs {
override val packageFormats = setOf(PackageFormat.EXE)
override val packageFormats = setOf(PackageFormat.EXE, PackageFormat.MSI)

override fun createArgumentsForJPackage(packageFormat: PackageFormat): List<String> =
mutableListOf(
Expand Down

0 comments on commit 769830e

Please sign in to comment.