Skip to content

Commit

Permalink
Add os name to launcher update jar
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Jun 24, 2024
1 parent 959634f commit 25d54ab
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/desktop/desktop-app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

plugins {
id("bisq.java-library")
id("bisq.gradle.desktop.regtest.BisqDesktopRegtestPlugin")
Expand Down Expand Up @@ -57,6 +59,12 @@ tasks {
}
}

named<ShadowJar>("shadowJar") {
archiveClassifier.set(
System.getProperty("os.name").toLowerCase() + "-all"
)
}

distZip {
enabled = false
}
Expand Down

0 comments on commit 25d54ab

Please sign in to comment.