mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
fix archive issues
This commit is contained in:
parent
28ee16279c
commit
8b3ed8171b
1 changed files with 11 additions and 2 deletions
13
build.gradle
13
build.gradle
|
@ -182,15 +182,24 @@ jlink {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task removeGroupWritePermission(type: Exec) {
|
||||||
|
commandLine 'chmod', '-R', 'g-w', "$buildDir/jpackage/Sparrow"
|
||||||
|
}
|
||||||
|
|
||||||
task packageZipDistribution(type: Zip) {
|
task packageZipDistribution(type: Zip) {
|
||||||
archiveFileName = "Sparrow-${sparrowVersion}.zip"
|
archiveFileName = "Sparrow-${sparrowVersion}.zip"
|
||||||
destinationDirectory = file("$buildDir/jpackage")
|
destinationDirectory = file("$buildDir/jpackage")
|
||||||
from "$buildDir/jpackage/Sparrow"
|
from("$buildDir/jpackage/") {
|
||||||
|
include "Sparrow/**"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task packageTarDistribution(type: Tar) {
|
task packageTarDistribution(type: Tar) {
|
||||||
|
dependsOn removeGroupWritePermission
|
||||||
archiveFileName = "sparrow-${sparrowVersion}.tar.gz"
|
archiveFileName = "sparrow-${sparrowVersion}.tar.gz"
|
||||||
destinationDirectory = file("$buildDir/jpackage")
|
destinationDirectory = file("$buildDir/jpackage")
|
||||||
compression = Compression.GZIP
|
compression = Compression.GZIP
|
||||||
from "$buildDir/jpackage/Sparrow"
|
from("$buildDir/jpackage/") {
|
||||||
|
include "Sparrow/**"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue