diff options
author | Antonio Musolino <antoniomusolino007@gmail.com> | 2022-03-01 04:37:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 12:37:50 +0900 |
commit | 6a030a5396f9c838b4d4523f43ab2d9e2f502e04 (patch) | |
tree | 2ad4c356bb5c5ec5b91dbcd5dd9e3442fed0c2bc /runtime/examples | |
parent | a41d399f5f728c73b652c3f5f5c2bf57d2054153 (diff) |
fix(runtime): disable console color for non tty stdout (#13782)
Diffstat (limited to 'runtime/examples')
-rw-r--r-- | runtime/examples/hello_runtime.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs index e74920c34..0a0d6fe23 100644 --- a/runtime/examples/hello_runtime.rs +++ b/runtime/examples/hello_runtime.rs @@ -35,6 +35,7 @@ async fn main() -> Result<(), AnyError> { enable_testing_features: false, location: None, no_color: false, + is_tty: false, runtime_version: "x".to_string(), ts_version: "x".to_string(), unstable: false, |