Skip to content

Commit 3fbd751

Browse files
louis-genestiercoderabbitai[bot]AmanVarshney01
authored
fix(post-installation): use selected package manager (#342)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
1 parent 5046f5f commit 3fbd751

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/shy-pillows-give.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-better-t-stack": patch
3+
---
4+
5+
fix(post-installation): use selected package manager

apps/cli/src/helpers/project-generation/post-installation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ export function displayPostInstallInstructions(
108108
"IMPORTANT:",
109109
)} Complete D1 database setup first (see Database commands below)\n`;
110110
}
111-
output += `${pc.cyan(`${stepCounter++}.`)} bun dev\n`;
111+
output += `${pc.cyan(`${stepCounter++}.`)} ${runCmd} dev\n`;
112112
output += `${pc.cyan(
113113
`${stepCounter++}.`,
114-
)} cd apps/server && bun run cf-typegen\n\n`;
114+
)} cd apps/server && ${runCmd} run cf-typegen\n\n`;
115115
} else {
116116
output += "\n";
117117
}

0 commit comments

Comments
 (0)