bash
This commit is contained in:
parent
d39dd7a24a
commit
55c4f064f7
1 changed files with 2 additions and 15 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue