You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mr...@apache.org on 2018/03/02 19:20:20 UTC

[incubator-openwhisk-test] branch master updated: updating manifest files to replace package with packages (#7)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1414b8f  updating manifest files to replace package with packages (#7)
1414b8f is described below

commit 1414b8f666938df52450318f50eb5df7b3b2c1cd
Author: Priti Desai <pd...@us.ibm.com>
AuthorDate: Fri Mar 2 11:20:19 2018 -0800

    updating manifest files to replace package with packages (#7)
---
 packages/hellowhisk/manifest.yaml  | 14 +++++++-------
 packages/helloworlds/manifest.yaml | 14 +++++++-------
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/packages/hellowhisk/manifest.yaml b/packages/hellowhisk/manifest.yaml
index 2ca660e..7e5257d 100644
--- a/packages/hellowhisk/manifest.yaml
+++ b/packages/hellowhisk/manifest.yaml
@@ -1,9 +1,9 @@
 # Test manifest for incubator-openwhisk-wskdeploy utility
 # See https://github.com/apache/incubator-openwhisk-wskdeploy/tree/master/tests/src/integration/dependency
-package:
-  name: hellowhisk
-  actions:
-    greeting:
-      function: src/greeting.js
-    httpGet:
-      function: src/httpGet.swift
+packages:
+    hellowhisk:
+        actions:
+            greeting:
+                function: src/greeting.js
+            httpGet:
+                function: src/httpGet.swift
diff --git a/packages/helloworlds/manifest.yaml b/packages/helloworlds/manifest.yaml
index 098c6af..3460532 100644
--- a/packages/helloworlds/manifest.yaml
+++ b/packages/helloworlds/manifest.yaml
@@ -1,7 +1,7 @@
-package:
-  name: helloworlds
-  actions:
-    hello-js:
-      function: src/hello.js
-    helloworld-js:
-      function: src/helloworld.js
+packages:
+    helloworlds:
+        actions:
+            hello-js:
+                function: src/hello.js
+            helloworld-js:
+                function: src/helloworld.js

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