Skip to content

Commit

Permalink
Untracked changes foundry (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
technophile-04 authored Jun 10, 2024
1 parent 764d5c2 commit a2c8bab
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/fresh-panthers-run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-eth": patch
---

foundry: fix untracked OZ lib after inital commit
9 changes: 8 additions & 1 deletion src/tasks/create-first-git-commit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ export async function createFirstGitCommit(targetDir: string, options: Options)
});
await execa(
"git",
["submodule", "add", "https://github.com/OpenZeppelin/openzeppelin-contracts", "lib/openzeppelin-contracts"],
[
"submodule",
"add",
"-b",
"release-v5.0",
"https://github.com/OpenZeppelin/openzeppelin-contracts",
"lib/openzeppelin-contracts",
],
{
cwd: foundryWorkSpacePath,
},
Expand Down
2 changes: 1 addition & 1 deletion templates/base/packages/nextjs/vercel.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"installCommand": "yarn install"
}
}

0 comments on commit a2c8bab

Please sign in to comment.