From eb0dbe74df827fecc3ae2cce0b9b7eb9aed51aff Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Sun, 27 Mar 2016 21:53:38 -0700 Subject: [PATCH] fix deploy query --- cmds/cmds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmds/cmds.ts b/cmds/cmds.ts index fdb46850..7094ab23 100644 --- a/cmds/cmds.ts +++ b/cmds/cmds.ts @@ -26,7 +26,7 @@ export function deployCoreAsync(res: ts.ks.CompileResult) { function getBitDrivesAsync(): Promise { if (process.platform == "win32") { - return execAsync("wmic PATH Win32_LogicalDisk get Device ID, VolumeName, FileSystem") + return execAsync("wmic PATH Win32_LogicalDisk get DeviceID, VolumeName, FileSystem") .then(buf => { let res: string[] = [] buf.toString("utf8").split(/\n/).forEach(ln => {