File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
22
3- export const VERSION = "2.4.0 " ;
3+ export const VERSION = "2.4.1 " ;
44export const BRANCH = "master" ;
55// export const COMPAT: { [denon: string]: string[] } = {
66// "2.3.0": ["1.2.0"],
Original file line number Diff line number Diff line change @@ -159,6 +159,11 @@ export class Runner {
159159 /** Create an `Execution` object to handle the lifetime
160160 * of the process that is executed. */
161161 execute ( command : Command ) : Deno . Process {
162+ // Fix for #102
163+ if ( Deno . build . os === "windows" ) {
164+ command . cmd = [ "cmd" , "/c" ] . concat ( command . cmd ) ;
165+ }
166+
162167 const options = {
163168 cmd : command . cmd ,
164169 env : command . options . env ?? { } ,
You can’t perform that action at this time.
0 commit comments