From 9f243efb8472b845ecf3a8aaa6050ab518d8ec5f Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Sat, 29 Mar 2025 04:04:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20execute.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execute.py b/execute.py index 7ef7200..72a6891 100755 --- a/execute.py +++ b/execute.py @@ -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)