17 lines
353 B
Bash
Executable File
17 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install Foundry dependencies (OpenZeppelin, etc.)
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Installing Foundry dependencies..."
|
|
|
|
# Install forge-std
|
|
forge install foundry-rs/forge-std --no-commit
|
|
|
|
# Install OpenZeppelin contracts
|
|
forge install OpenZeppelin/openzeppelin-contracts --no-commit
|
|
|
|
echo "Foundry dependencies installed successfully!"
|
|
|