Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldev20 committed Nov 16, 2024
1 parent 27c38c6 commit 418e412
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/foundry/scripts-js/generateTsAbis.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ function main() {
)
);

if (!existsSync("../nextjs-app/contracts/")) {
mkdirSync("../nextjs-app/contracts/");
if (!existsSync("../nextjs-app/src/contracts/")) {
mkdirSync("../nextjs-app/src/contracts/");
}
writeFileSync(
`../nextjs-app/contracts/deployedContracts.ts`,
`../nextjs-app/src/contracts/deployedContracts.ts`,
format(
`${generatedContractComment} \n\nconst deployedContracts = {${fileContent}} as const;\n`,
{
Expand Down

0 comments on commit 418e412

Please sign in to comment.