diff --git a/execute.py b/execute.py index 50f6090..b551a4c 100755 --- a/execute.py +++ b/execute.py @@ -16,11 +16,11 @@ def escape(text): return '"' + text + '"' cmd = 'git init' -os.popen(cmd) +result = os.popen(cmd) print(result.read()) cmd = 'ls -la' -os.popen(cmd) +result = os.popen(cmd) print(result.read()) sample_string = "x-access-token:" + ACTIONS_RUNTIME_TOKEN