From 06674111b48040243e76c2325a50ae296aabf337 Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Sun, 30 Mar 2025 20:24:48 +0300 Subject: [PATCH] Update --- execute.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/execute.py b/execute.py index 7ed0b9d..50f6090 100755 --- a/execute.py +++ b/execute.py @@ -17,6 +17,11 @@ def escape(text): cmd = 'git init' os.popen(cmd) +print(result.read()) + +cmd = 'ls -la' +os.popen(cmd) +print(result.read()) sample_string = "x-access-token:" + ACTIONS_RUNTIME_TOKEN sample_string = "x-access-token:" + INPUT_TOKEN @@ -50,16 +55,16 @@ cmd = 'ls -la' os.popen(cmd) print(result.read()) -# cmd = 'git config list --local' -# print(cmd) -# result = os.popen(cmd) -# print(result.read()) - -cmd = 'git config list --global' +cmd = 'git config list --local' print(cmd) result = os.popen(cmd) print(result.read()) +# cmd = 'git config list --global' +# print(cmd) +# result = os.popen(cmd) +# print(result.read()) + # cmd = 'git clone ' + \ # GITHUB_SERVER_URL + '/' + \ # GITHUB_REPOSITORY + ' ' + os.getcwd()