This is an automated email from the ASF dual-hosted git repository. rabbah pushed a commit to branch fix-compile-script in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-python.git
commit 7be8c42fd53513d3aaa83a9d272f9addc6ade938 Author: Joshua Auerbach <[email protected]> AuthorDate: Fri Feb 26 16:39:40 2021 -0500 Fix indentation --- core/python2ActionLoop/bin/compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/python2ActionLoop/bin/compile b/core/python2ActionLoop/bin/compile index b51e4c2..44c4578 100755 --- a/core/python2ActionLoop/bin/compile +++ b/core/python2ActionLoop/bin/compile @@ -71,8 +71,8 @@ else echo "Execution Environment Mismatch" exit 1 fi """, True) - if os.environ.get("__OW_EXECUTION_ENV"): - write_file("%s.env"%tgt_file, os.environ['__OW_EXECUTION_ENV']) + if os.environ.get("__OW_EXECUTION_ENV"): + write_file("%s.env"%tgt_file, os.environ['__OW_EXECUTION_ENV']) return tgt_file #check if a module exists
