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

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