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'