Skip to content

Commit

Permalink
Merge pull request #4798 from udda1996/intermidiate-dir
Browse files Browse the repository at this point in the history
Remove additional intermediate directory in dependency directory
  • Loading branch information
udda1996 authored Aug 15, 2023
2 parents 397811d + 449d4e9 commit 665b9c8
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 665b9c8

Please sign in to comment.