We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37debd7 commit 410b56eCopy full SHA for 410b56e
packages/angular/cli/utilities/tty.ts
@@ -11,5 +11,5 @@ export function isTTY(): boolean {
11
return !(force === '0' || force.toUpperCase() === 'FALSE');
12
}
13
14
- return !!process.stdout.isTTY && !!process.stdin.isTTY;
+ return !!process.stdout.isTTY && !!process.stdin.isTTY && !('CI' in process.env);
15
0 commit comments