From cbd8a2105645216e732966559533cc7fadf316af Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Mon, 6 Apr 2026 11:08:30 +0300 Subject: [PATCH] Fix error --- executor/cli/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executor/cli/git.py b/executor/cli/git.py index 67773a6..8bb8e27 100644 --- a/executor/cli/git.py +++ b/executor/cli/git.py @@ -84,7 +84,7 @@ def handle_git(args): print(result.read()) repository_path = Path(INPUT_PATH) - if not repository_path.exist(): + if not repository_path.exists(): repository_path.mkdir(parents=True) cmd = 'git config --global credential.helper store --file /tmp/.git-credentials'