From a72ea311a70d7fb2c5141516a7a5b15d1e79b44e Mon Sep 17 00:00:00 2001 From: Eyal Solnik Date: Sun, 20 Sep 2015 13:06:02 +0300 Subject: [PATCH] Fix issue #5854 --- jake/jake.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jake/jake.d.ts b/jake/jake.d.ts index 904a8084b..1812b818b 100644 --- a/jake/jake.d.ts +++ b/jake/jake.d.ts @@ -122,6 +122,11 @@ declare module jake{ * stop execution on error, default true */ breakOnError?:boolean; + + /** + * + */ + windowsVerbatimArguments?: boolean } export function exec(cmds:string[], callback?:()=>void, opts?:ExecOptions):void;