Skip to content

Commit

Permalink
fix(hardhat-foundry): config clashes condition
Browse files Browse the repository at this point in the history
  • Loading branch information
wiasliaw committed Nov 26, 2024
1 parent ad3df5b commit 8f55685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hardhat-foundry/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ extendConfig((config, userConfig) => {
config.paths.root,
foundryConfig.cache_path
);
if (config.paths.cache === foundryCachePath) {
if (config.paths.cache !== foundryCachePath) {
config.paths.cache = "cache_hardhat";
}

Expand Down

0 comments on commit 8f55685

Please sign in to comment.