Обновить executor/cli/git.py
Test Actions / Builder (push) Successful in 9s

This commit is contained in:
2026-03-16 22:08:20 +03:00
parent 9f9c6d17cc
commit a82d0c27da
+2 -2
View File
@@ -77,10 +77,10 @@ def handle_git(args):
print(cmd)
exec_cmd(cmd)
cmd = 'git fetch --progress --depth ' + DEPTH + ' origin ' + GITHUB_REF_NAME
cmd = 'git fetch --progress --depth ' + DEPTH + ' origin ' + INPUT_REF + INPUT_PATH
print(cmd)
exec_cmd(cmd)
cmd = 'git checkout ' + GITHUB_REF_NAME
cmd = 'git checkout ' + INPUT_REF + ' ' + INPUT_PATH
print(cmd)
exec_cmd(cmd)