You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2019/05/19 19:00:41 UTC

[GitHub] [incubator-openwhisk-runtime-dotnet] lesomnus opened a new issue #10: incorrect quick start guide

lesomnus opened a new issue #10: incorrect quick start guide
URL: https://github.com/apache/incubator-openwhisk-runtime-dotnet/issues/10
 
 
   ``` sh
   cd out
   zip -r -0 helloDotNet.bin *
   wsk action update helloDotNet helloDotNet.bin --main Apache.OpenWhisk.Example.Dotnet::Apache.OpenWhisk.Example.Dotnet.Hello::Main --kind dotnet:2.2
   ```
   
   should be
   
   ```sh
   cd out
   zip -r -0 helloDotNet.zip *
   wsk action update helloDotNet helloDotNet.zip --main Apache.OpenWhisk.Example.Dotnet::Apache.OpenWhisk.Example.Dotnet.Hello::Main --kind dotnet:2.2
   ```
   
   If you invoke action updated with name *.bin will result:
   ```json
   { 
       "error": "code must be binary (zip file)."
   }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services