You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2018/09/26 14:48:36 UTC

[incubator-openwhisk-runtime-ruby] branch master updated: Fixed spelling of finished in error message (#12)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 033d293  Fixed spelling of finished in error message (#12)
033d293 is described below

commit 033d29307a2e7fcf93c710807b35c6c456774e23
Author: Julian Cheal <ju...@gmail.com>
AuthorDate: Wed Sep 26 15:48:30 2018 +0100

    Fixed spelling of finished in error message (#12)
---
 core/ruby2.5Action/rackapp/init.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/ruby2.5Action/rackapp/init.rb b/core/ruby2.5Action/rackapp/init.rb
index 4b9dcf4..eee1767 100644
--- a/core/ruby2.5Action/rackapp/init.rb
+++ b/core/ruby2.5Action/rackapp/init.rb
@@ -35,7 +35,7 @@ class InitApp
     if binary then
       File.write TMP_ZIP, Base64.decode64(code)
       if !unzip(TMP_ZIP, PROGRAM_DIR) then
-        return ErrorResponse.new 'Invalid Binary: failed to open zip file. Please make sure you have finishied $bundle package successfully.', 500
+        return ErrorResponse.new 'Invalid Binary: failed to open zip file. Please make sure you have finished $bundle package successfully.', 500
       end
       # Try to resolve dependencies
       if File.exist?(PROGRAM_DIR + 'Gemfile') then