Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: remove new line to prevent bad spinner clearing
  • Loading branch information
lili2311 committed Sep 2, 2020
1 parent 5720a16 commit fade21a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/plugins/get-deps-from-plugin.ts
Expand Up @@ -149,7 +149,7 @@ export function warnSomeGradleManifestsNotScanned(
);

if (diff.length > 0) {
return `✗ ${diff.length}/${detectedGradleFiles.length} detected Gradle manifests did not return dependencies.\nThey may have errored or were not included as part of a multi-project build. You may need to scan them individually with --file=path/to/file. Run with \`-d\` for more info.`;
return `✗ ${diff.length}/${detectedGradleFiles.length} detected Gradle manifests did not return dependencies. They may have errored or were not included as part of a multi-project build. You may need to scan them individually with --file=path/to/file. Run with \`-d\` for more info.`;
}
return null;
}
2 changes: 1 addition & 1 deletion test/acceptance/cli-test/cli-test.all-projects.spec.ts
Expand Up @@ -92,7 +92,7 @@ export const AllProjectsTests: AcceptanceTests = {
);
t.same(
stdoutMessages,
'✗ 1/3 detected Gradle manifests did not return dependencies.\n' +
'✗ 1/3 detected Gradle manifests did not return dependencies. ' +
'They may have errored or were not included as part of a multi-project build. You may need to scan them individually with --file=path/to/file. Run with `-d` for more info.',
);
stubbedConsole.restore();
Expand Down

0 comments on commit fade21a

Please sign in to comment.