We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c34a07 commit e5e8bf0Copy full SHA for e5e8bf0
1 file changed
build.gradle
@@ -241,11 +241,13 @@ task individualArchives(
241
if (p.goOs == 'linux') { compression = Compression.GZIP }
242
destinationDir = file(cliReleaseLocation)
243
baseName = "${p.zipFileName}-${packageVersion}-${p.owOs}-${p.goArch}"
244
- from "${cliBuildLocation}/${p.goOs}-${p.goArch}/"
245
- include "${buildFileName}*"
246
- from "./"
247
- include "LICENSE.txt", "NOTICE.txt", "README.md"
248
- exclude "wski18n"
+ from("${cliBuildLocation}/${p.goOs}-${p.goArch}/") {
+ include "${buildFileName}*"
+ }
+ from("./") {
+ include "LICENSE.txt", "NOTICE.txt", "README.md"
249
+ exclude "wski18n"
250
251
}
252
})
253
0 commit comments