This is an automated email from the ASF dual-hosted git repository.
pdesai pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-wskdeploy.git
The following commit(s) were added to refs/heads/master by this push:
new 65b3e28 Fix the format issue of the binaries (#938)
65b3e28 is described below
commit 65b3e28a3071a09e6ea6e09db333cfce4ddaa06e
Author: Vincent <[email protected]>
AuthorDate: Thu May 24 17:19:26 2018 -0400
Fix the format issue of the binaries (#938)
Closes: #924
---
build.gradle | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/build.gradle b/build.gradle
index a73b353..4bcf448 100644
--- a/build.gradle
+++ b/build.gradle
@@ -264,10 +264,14 @@ task individualArchives(
if (p.goOs == 'linux') { compression = Compression.GZIP }
destinationDir = file('./release')
baseName =
"${p.zipFileName}-${packageVersion}-${p.owOs}-${p.goArch}"
- from "./build/${p.goOs}-${p.goArch}/"
- include "${buildFileName}*"
- from "./"
- include "LICENSE.txt", "NOTICE.txt", "README.md", "docs/**"
+
+ from("./build/${p.goOs}-${p.goArch}/") {
+ include "${buildFileName}*"
+ }
+
+ from("./") {
+ include "LICENSE.txt", "NOTICE.txt", "README.md", "docs/**"
+ }
}
})
--
To stop receiving notification emails like this one, please contact
[email protected].