From e0ca60e7707b5896ce67301aefd1de4a76e3cf75 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 28 Apr 2020 12:35:23 -0400 Subject: BREAKING: Use LLVM target triple for Deno.build (#4948) Deno.build.os values have changed to correspond to standard LLVM target triples "win" -> "windows" "mac" -> "darwin" --- std/examples/chat/server_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/examples') diff --git a/std/examples/chat/server_test.ts b/std/examples/chat/server_test.ts index e1b1c0e12..47e17314b 100644 --- a/std/examples/chat/server_test.ts +++ b/std/examples/chat/server_test.ts @@ -27,7 +27,7 @@ async function startServer(): Promise { } // TODO: https://github.com/denoland/deno/issues/4108 -const ignore = build.os == "win"; +const ignore = build.os == "windows"; test({ ignore, -- cgit v1.2.3