You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2020/10/30 23:45:47 UTC

[openwhisk] branch master updated: fix start.sh to work on macos (#5019)

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

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 1142068  fix start.sh to work on macos (#5019)
1142068 is described below

commit 1142068ac00ff68d4abc15c28972d229a89cff9e
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Fri Oct 30 19:45:25 2020 -0400

    fix start.sh to work on macos (#5019)
    
    remove extra leading / in volume mount command
---
 core/standalone/start.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/standalone/start.sh b/core/standalone/start.sh
index ee83b7e..698ad77 100755
--- a/core/standalone/start.sh
+++ b/core/standalone/start.sh
@@ -20,7 +20,7 @@ shift
 docker run --rm -d \
   -h openwhisk --name openwhisk \
   -p 3233:3233 -p 3232:3232 \
-  -v //var/run/docker.sock:/var/run/docker.sock \
+  -v /var/run/docker.sock:/var/run/docker.sock \
  "$IMAGE" "$@"
 docker exec openwhisk waitready
 case "$(uname)" in