Skip to content

Commit 962d9b9

Browse files
committed
fix: keep displaying other commands when project is initialised in working directory
1 parent 7b06f5d commit 962d9b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/create/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export const createSolid = (version: string) =>
159159
// Next steps..
160160
const pM = detectPackageManager();
161161
p.note(
162-
projectName === "." ? "" : `cd ${projectName}\n` +
162+
(projectName === "." ? "" : `cd ${projectName}\n`) +
163163
`${pM.name} install
164164
${pM.name} ${pM.runScriptCommand("dev")}`,
165165
"To get started, run:",

0 commit comments

Comments
 (0)