dubeejw commented on a change in pull request #2334: (Review) Added --last
Activation Flag
URL:
https://github.com/apache/incubator-openwhisk/pull/2334#discussion_r127062722
##########
File path: tools/cli/build.gradle
##########
@@ -38,9 +38,12 @@ task copyCLIShortcut(type: Copy, dependsOn: [distBinary,
dumpOSInfo]) {
String go_osarch = mapOsArchToGoArch(getOsArch())
String from_path_wsk =
"${projectDir}/../../bin/${go_osname}/${go_osarch}/wsk"
String to_path_dir = "${projectDir}/../../bin"
-
- from from_path_wsk
- into to_path_dir
+ if (file(from_path_wsk).exists()) {
+ exec {
Review comment:
This exec call doesn't seem to build the CLI on a mac.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services