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:
[email protected]


With regards,
Apache Git Services

Reply via email to