Skip to content

Commit

Permalink
TINY-10801: Check not is TTY
Browse files Browse the repository at this point in the history
  • Loading branch information
danoaky-tiny committed Mar 26, 2024
1 parent a1b04fb commit 5011c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/server/src/main/ts/bedrock/util/Env.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const IS_CI = 'CI' in process.env && process.stdout.isTTY;
export const IS_CI = 'CI' in process.env && !process.stdout.isTTY;

0 comments on commit 5011c61

Please sign in to comment.