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 => {