zerodevapp / kernel

https://docs.zerodev.app/
MIT License
172 stars 61 forks source link

`forge build` error #78

Closed eunseong-theori closed 7 months ago

eunseong-theori commented 7 months ago

When I run forge build, I get the error:

file cannot be resolved due to mismatch of file name case: "~/kernel/lib/forge-std/src/Console.sol": No such file or directory (os error 2)

Changing import {console} from "forge-std/Console.sol"; to lowercase import {console} from "forge-std/console.sol"; solves the above problem.

https://github.com/zerodevapp/kernel/blob/eaaac83acd3e7695c742758a54828874ec0dcdee/src/utils/KernelTestBase.sol#L21

leekt commented 7 months ago

weird that it works on my machine, i'll fix this in separate pr though thanks for the input :)

leekt commented 7 months ago

fixed in #79