From 55c4f064f7dad7eb4664109ed884dfdf925a29b5 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 21 Nov 2025 03:29:06 +0300 Subject: [PATCH] bash --- .forgejo/workflows/agent-development.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.forgejo/workflows/agent-development.yml b/.forgejo/workflows/agent-development.yml index c8d6d34..1f8c648 100644 --- a/.forgejo/workflows/agent-development.yml +++ b/.forgejo/workflows/agent-development.yml @@ -107,22 +107,9 @@ jobs: MAX_RETRIES: 3 TIMEOUT_HOURS: 6 run: | - # Ensure bash and cursor-agent are in PATH for this step - export PATH="$HOME/.local/bin:$HOME/.cursor/bin:/usr/bin:/bin:$PATH" - - # Verify bash is accessible - if ! command -v bash &> /dev/null; then - echo "❌ bash not found in PATH" - echo "PATH: $PATH" - echo "Looking for bash..." - find /usr /bin -name "bash" -type f 2>/dev/null | head -5 || echo "No bash found" - exit 1 - else - echo "✅ bash found at: $(command -v bash)" - bash --version || echo "bash version check failed" - fi - # Verify cursor-agent is accessible + echo "Current PATH: $PATH" + if ! command -v cursor-agent &> /dev/null; then echo "❌ cursor-agent not found in PATH" echo "PATH: $PATH"