Skip to content

Commit

Permalink
Fix: Forge install path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjemmmic committed Sep 16, 2024
1 parent 5f1d93f commit 92ec028
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Install and Debug Foundry
- name: Install Foundry
run: |
curl -L https://foundry.paradigm.xyz | bash
echo "Listing home directory:"
ls -la ~
echo "Listing .foundry directory (if it exists):"
ls -la ~/.foundry || echo ".foundry directory not found"
echo "Listing .foundry/bin directory (if it exists):"
ls -la ~/.foundry/bin || echo ".foundry/bin directory not found"
echo "Checking PATH:"
echo $PATH
echo "Attempting to run foundryup:"
~/.foundry/bin/foundryup || echo "foundryup not found in expected location"
echo "Searching for foundryup:"
find ~ -name foundryup
/home/runner/.config/.foundry/bin/foundryup
shell: bash

- name: Add Foundry to PATH
Expand Down

0 comments on commit 92ec028

Please sign in to comment.