diff options
Diffstat (limited to 'std/path/globrex.ts')
-rw-r--r-- | std/path/globrex.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/path/globrex.ts b/std/path/globrex.ts index 0fe833a52..868df797a 100644 --- a/std/path/globrex.ts +++ b/std/path/globrex.ts @@ -2,7 +2,7 @@ // MIT License // Copyright (c) 2018 Terkel Gjervig Nielsen -const isWin = Deno.build.os === "win"; +const isWin = Deno.build.os === "windows"; const SEP = isWin ? `(?:\\\\|\\/)` : `\\/`; const SEP_ESC = isWin ? `\\\\` : `/`; const SEP_RAW = isWin ? `\\` : `/`; |