Update
All checks were successful
Test Actions / Builder (push) Successful in 7s

This commit is contained in:
2025-03-30 20:27:57 +03:00
parent 12a28db0cd
commit 23a69d550b

View File

@@ -48,11 +48,12 @@ result = os.popen(cmd)
cmd = 'git remote add origin ' + GITHUB_SERVER_URL + '/' + GITHUB_REPOSITORY
os.popen(cmd)
cmd = 'git fetch --depth 1 origin ' + GITHUB_REF
os.popen(cmd)
cmd = 'git fetch --progress --depth 1 origin ' + GITHUB_REF
result = os.popen(cmd)
print(result.read())
cmd = 'ls -la'
os.popen(cmd)
result = os.popen(cmd)
print(result.read())
cmd = 'git config list --local'