Skip to content

Commit

Permalink
🔨 scripts: ignore prepare errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Aug 4, 2024
1 parent 10d7cae commit 5afd7b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"coverage:fuzzer": "FOUNDRY_PROFILE=production forge test --no-match-contract Protocol",
"deploy:ethereum": "hardhat --network ethereum deploy",
"deploy:op-sepolia": "hardhat --network op-sepolia deploy",
"prepare": "concurrently 'npm:prepare:*' --group -c auto",
"prepare:foundry": "if git status &>/dev/null; then forge install; fi",
"prepare": "concurrently 'npm:prepare:*' --group -c auto || true",
"prepare:foundry": "forge install",
"prepare:hardhat": "hardhat compile --force"
},
"files": [
Expand Down

0 comments on commit 5afd7b1

Please sign in to comment.