Skip to content

Commit bd2d16b

Browse files
authored
fix: appkit setup command (#4396)
## Changes <!-- Brief summary of your changes that is easy to understand --> ## Why <!-- Why are these changes needed? Provide the context that the reviewer might be missing. For example, were there any decisions behind the change that are not reflected in the code itself? --> ## Tests <!-- How have you tested the changes? --> <!-- If your PR needs to be included in the release notes for next release, add a separate entry in NEXT_CHANGELOG.md as part of your PR. --> Co-authored-by: MarioCadenas <MarioCadenas@users.noreply.github.com>
1 parent 1c8eb85 commit bd2d16b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/apps/initializer/nodejs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func (i *InitializerNodeJs) runAppkitSetup(ctx context.Context, workDir string)
9393
}
9494

9595
return prompt.RunWithSpinnerCtx(ctx, "Running setup...", func() error {
96-
cmd := exec.CommandContext(ctx, "npx", "appkit-setup", "--write")
96+
cmd := exec.CommandContext(ctx, "npx", "appkit", "setup", "--write")
9797
cmd.Dir = workDir
9898
cmd.Stdout = nil
9999
cmd.Stderr = nil

0 commit comments

Comments
 (0)