This commit is contained in:
Dmitry 2025-11-21 03:29:06 +03:00
parent d39dd7a24a
commit 55c4f064f7

View file

@ -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"