From d6f8a294a595fed1c0c82f785efb4482bfb06363 Mon Sep 17 00:00:00 2001 From: "escottalexander@gmail.com" Date: Tue, 1 Oct 2024 10:25:56 -0400 Subject: [PATCH] adjust forge install script --- .changeset/thin-years-matter.md | 5 +++++ src/tasks/create-first-git-commit.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/thin-years-matter.md diff --git a/.changeset/thin-years-matter.md b/.changeset/thin-years-matter.md new file mode 100644 index 0000000..3618f28 --- /dev/null +++ b/.changeset/thin-years-matter.md @@ -0,0 +1,5 @@ +--- +"eth-tech-tree": patch +--- + +adjusted forge install script diff --git a/src/tasks/create-first-git-commit.ts b/src/tasks/create-first-git-commit.ts index a947164..1ace6c0 100644 --- a/src/tasks/create-first-git-commit.ts +++ b/src/tasks/create-first-git-commit.ts @@ -14,7 +14,7 @@ export async function createFirstGitCommit(targetDir: string) { errorLog = "Installing forge dependencies"; // forge install foundry libraries - await execa("forge", ["install", ...foundryLibraries, "--no-commit"], { cwd: foundryWorkSpacePath }); + await execa("forge", ["install", ...foundryLibraries, "--no-git"], { cwd: foundryWorkSpacePath }); errorLog = "git add -A"; // Add and commit all changes