Обновить execute.py

This commit is contained in:
2025-03-29 04:04:36 +03:00
parent c57ac4c1d9
commit 9f243efb84

View File

@@ -18,7 +18,7 @@ base64_bytes = base64.b64encode(sample_string_bytes)
base64_string = 'AUTHORIZATION: basic ' + base64_bytes.decode("utf-8")
cmd = 'git -c http.extraheader="'+base64_string+'" clone ' + \
os.getenv('GITHUB_SERVER_URL') + \
os.getenv('GITHUB_SERVER_URL') + '/' + \
os.getenv('GITHUB_REPOSITORY')
os.system(cmd)