From fb651bf3fc50fb1769283d3c15091e81ee1b7eb5 Mon Sep 17 00:00:00 2001 From: seanyusa Date: Sun, 12 Dec 2021 12:17:48 -0600 Subject: [PATCH] fix: use full projectDir for chdir --- create-turbo/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-turbo/src/index.ts b/create-turbo/src/index.ts index 7e972adec82ab..633a531670531 100644 --- a/create-turbo/src/index.ts +++ b/create-turbo/src/index.ts @@ -196,7 +196,7 @@ async function run() { spinner.stop(); } - process.chdir(relativeProjectDir); + process.chdir(projectDir); tryGitInit(relativeProjectDir); if (projectDirIsCurrentDir) {