chore(win) add ";"

This commit is contained in:
coderaiser 2013-09-12 12:07:14 +00:00
parent 69866fc471
commit 3505a585f2

View file

@ -27,7 +27,7 @@
exports.getVolumes = function(pCallBack){
var lCHCP = 'chcp ' + Charset.UNICODE,
lGetVolumes = 'wmic logicaldisk get name'
lGetVolumes = 'wmic logicaldisk get name';
exec(lCHCP + ' && ' + lGetVolumes, retProcessOuput(pCallBack));
};
@ -46,7 +46,7 @@
if(!lError) {
lVolumes = Util.removeStr(pStdout, lRemoveStr)
.split(' ')
.split(' ');
lVolumes.pop();
}