Skip to content

Commit

Permalink
fix(core): use correct break line char in deprecated generator messag…
Browse files Browse the repository at this point in the history
…e printed by the generate command (#18879)
  • Loading branch information
leosvelperez authored Aug 29, 2023
1 parent f24ea10 commit 86c21c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/command-line/generate/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ export async function generate(cwd: string, args: { [k: string]: any }) {
[
`${NX_PREFIX}: ${opts.collectionName}:${normalizedGeneratorName} is deprecated`,
`${deprecated}`,
].join('/n')
].join('\n')
);
}
if (!opts.quiet && !opts.help) {
Expand Down

1 comment on commit 86c21c6

@vercel
Copy link

@vercel vercel bot commented on 86c21c6 Aug 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx-five.vercel.app
nx.dev

Please sign in to comment.