dubeejw commented on a change in pull request #2334: (Review) Added --last
Activation Flag
URL:
https://github.com/apache/incubator-openwhisk/pull/2334#discussion_r127069401
##########
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:
@bpoole16, Remove the changes to the build.gradle and I say we can merge
this one after Travis passes. Will resolve your build issues in a different PR.
----------------------------------------------------------------
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