mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Only bundle Raspberry Pi on macOS
This commit is contained in:
parent
3281767a52
commit
41fa3a9063
@ -225,10 +225,13 @@ task packageInstallers {
|
||||
String appVersion = version.replaceAll("-SNAPSHOT", "")
|
||||
println "Packaging Bisq version ${appVersion}"
|
||||
|
||||
// zip jar lib for Raspberry Pi
|
||||
println "Zipping jar lib for raspberry pi"
|
||||
ant.zip(basedir: "${project(':desktop').buildDir}/app/lib",
|
||||
destfile: "${binariesFolderPath}/jar-lib-for-raspberry-pi-${appVersion}.zip")
|
||||
// zip jar lib for Raspberry Pi only on macOS as there are path issues on Windows and it is only needed once
|
||||
// for the release
|
||||
if (Os.isFamily(Os.FAMILY_MAC)) {
|
||||
println "Zipping jar lib for raspberry pi"
|
||||
ant.zip(basedir: "${project(':desktop').buildDir}/app/lib",
|
||||
destfile: "${binariesFolderPath}/jar-lib-for-raspberry-pi-${appVersion}.zip")
|
||||
}
|
||||
|
||||
String appDescription = 'A decentralized bitcoin exchange network.'
|
||||
String appCopyright = '© 2021 Bisq'
|
||||
|
Loading…
Reference in New Issue
Block a user