Skip to content

Commit

Permalink
Remove additional intermediate directory in dependency directory
Browse files Browse the repository at this point in the history
  • Loading branch information
udda1996 committed Aug 15, 2023
1 parent 397811d commit 449d4e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ballerina/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ task packageDistLinux(type: Zip) {
archiveFileName = "${parentDir}.zip"
entryCompression = ZipEntryCompression.DEFLATED

into("${parentDir}/dependencies/${dependencyJREVersion}") {
into("${parentDir}/dependencies") {
from "build/target/extracted-jre-linux"
fileMode = 0755
}
Expand Down Expand Up @@ -510,7 +510,7 @@ task packageDistMac(type: Zip) {
archiveFileName = "${parentDir}.zip"
entryCompression = ZipEntryCompression.DEFLATED

into("${parentDir}/dependencies/${dependencyJREVersion}") {
into("${parentDir}/dependencies") {
from "build/target/extracted-jre-macos"
fileMode = 0755
}
Expand Down Expand Up @@ -595,7 +595,7 @@ task packageDistMacArm(type: Zip) {
archiveFileName = "${parentDir}.zip"
entryCompression = ZipEntryCompression.DEFLATED

into("${parentDir}/dependencies/${dependencyJREVersion}") {
into("${parentDir}/dependencies") {
from "build/target/extracted-jre-macos-arm"
fileMode = 0755
}
Expand Down Expand Up @@ -680,7 +680,7 @@ task packageDistWindows(type: Zip) {
archiveFileName = "${parentDir}.zip"
entryCompression = ZipEntryCompression.DEFLATED

into("${parentDir}/dependencies/${dependencyJREVersion}") {
into("${parentDir}/dependencies") {
from "build/target/extracted-jre-windows"
fileMode = 0755
}
Expand Down

0 comments on commit 449d4e9

Please sign in to comment.