Reputation: 11
pragma solidity ^0.8.19;
import { Script , console } from "forge-std/Script.sol";
# forge-std/=lib/forge-std/src/
Upvotes: 1
Views: 970
Reputation: 1
I have been able to download the lib directory consisting of the forge-std/Script.sol file using the following command line prompt.
forge init --no-commit
or
forge init --no-commit --force
Note that as the flag suggests there is no commit being created. Also, as you may know this is the initialization of the foundry project so running this will start a new blank project.
Upvotes: 0