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 55cdfdc commit d1d5ac7Copy full SHA for d1d5ac7
packages/angular/cli/utilities/tty.ts
@@ -11,5 +11,7 @@ export function isTTY(): boolean {
11
return !(force === '0' || force.toUpperCase() === 'FALSE');
12
}
13
14
- return !!process.stdout.isTTY && !!process.stdin.isTTY && !('CI' in process.env);
+ const ci = process.env['CI'];
15
+
16
+ return !!process.stdout.isTTY && (!ci || ci === '0' || ci.toUpperCase() === 'FALSE');
17
0 commit comments