This is an automated email from the ASF dual-hosted git repository.
jamesthomas pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/openwhisk-pluggable-provider.git
The following commit(s) were added to refs/heads/master by this push:
new c2ae13a Fixing WSK_CLI definition. (#10)
c2ae13a is described below
commit c2ae13aa710ca0eaafd7a225700fd0a89ed30742
Author: James Thomas <[email protected]>
AuthorDate: Mon Aug 5 12:58:28 2019 +0100
Fixing WSK_CLI definition. (#10)
---
installCatalog.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/installCatalog.sh b/installCatalog.sh
index 6971f05..a93dfe1 100755
--- a/installCatalog.sh
+++ b/installCatalog.sh
@@ -24,7 +24,8 @@
set -e
set -x
-: ${WSK_CLI:?"WSK_CLI must be set and non-empty"}
+: ${OPENWHISK_HOME:?"OPENWHISK_HOME must be set and non-empty"}
+WSK_CLI="$OPENWHISK_HOME/bin/wsk"
if [ $# -eq 0 ]; then
echo "Usage: ./installCatalog.sh <authkey> <edgehost> <dburl> <dbtable>
<apihost> <workers>"