Merge pull request #20708 from adamdmharvey/adamdmharvey/fix-install-msg
fix(create-app): Logic bug about suggesting Yarn install
This commit is contained in:
@@ -129,7 +129,7 @@ export default async (opts: OptionValues): Promise<void> => {
|
||||
);
|
||||
Task.log();
|
||||
Task.section('All set! Now you might want to');
|
||||
if (!opts.skipInstall) {
|
||||
if (opts.skipInstall) {
|
||||
Task.log(
|
||||
` Install the dependencies: ${chalk.cyan(
|
||||
`cd ${opts.path ?? answers.name} && yarn install`,
|
||||
|
||||
Reference in New Issue
Block a user