From 230a4fd65d653ba7b7bc8aa6d006b679f431e988 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Sun, 13 Apr 2025 18:17:33 +0200 Subject: [PATCH] Do not run set -e for all cases --- aider_gitea/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider_gitea/__main__.py b/aider_gitea/__main__.py index dc7a1a4..fd60f04 100644 --- a/aider_gitea/__main__.py +++ b/aider_gitea/__main__.py @@ -34,11 +34,11 @@ logger = logging.getLogger(__name__) def bash_cmd(*commands: str) -> str: - commands = ('set -e', *commands) return 'bash -c "' + ';'.join(commands) + '"' AIDER_TEST = bash_cmd( + 'set -e', 'virtualenv venv', 'source venv/bin/activate', 'pip install -e .',