You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by du...@apache.org on 2018/01/30 19:46:29 UTC

[incubator-openwhisk-cli] branch master updated: Make './gradlew build' depend on 'compile' task (#217)

This is an automated email from the ASF dual-hosted git repository.

dubeejw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ee3747  Make './gradlew build' depend on 'compile' task (#217)
8ee3747 is described below

commit 8ee37476064c7449ad4328761f0fefef2d94a467
Author: Jonathan Springer <jo...@gmail.com>
AuthorDate: Tue Jan 30 14:46:26 2018 -0500

    Make './gradlew build' depend on 'compile' task (#217)
---
 build.gradle | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/build.gradle b/build.gradle
index 00c0cd4..08fc238 100644
--- a/build.gradle
+++ b/build.gradle
@@ -202,6 +202,8 @@ task compile(type: Copy, dependsOn: goBuild) {
     from("./build/${rootProject.localPlatform.goOs}-${rootProject.localPlatform.goArch}")
 }
 
+task build(type: DefaultTask, dependsOn: compile)
+
 /*
     For each platform, create an individual archive in a platform appropriate
     format (tarball for Linux, zipfile for Mac & Windows).

-- 
To stop receiving notification emails like this one, please contact
dubeejw@apache.org.