File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ val distImage by tasks.registering(Sync::class) {
8888 into(" lib" )
8989 }
9090 from(" src/dist" ) {
91- into(" . " )
91+ into(" bin " )
9292 }
9393}
9494
@@ -97,7 +97,9 @@ val distZip by tasks.registering(Zip::class) {
9797 description = " Builds the ZIP distribution"
9898 dependsOn(distImage)
9999
100- from(distImage.get().destinationDir)
100+ from(distImage.get().destinationDir) {
101+ into(" flamingock-cli" )
102+ }
101103
102104 archiveBaseName.set(" flamingock-cli" )
103105 archiveVersion.set(" " )
@@ -111,7 +113,9 @@ val distTar by tasks.registering(Tar::class) {
111113 description = " Builds the TAR distribution"
112114 dependsOn(distImage)
113115
114- from(distImage.get().destinationDir)
116+ from(distImage.get().destinationDir) {
117+ into(" flamingock-cli" )
118+ }
115119
116120 archiveBaseName.set(" flamingock-cli" )
117121 archiveVersion.set(" " )
You can’t perform that action at this time.
0 commit comments