Update system.js

This commit is contained in:
Namhyeon Go 2020-07-21 15:32:23 +09:00
parent 02ecd86dd1
commit 75af50defb

View File

@ -34,12 +34,12 @@ exports.createProcess = function(cmd) {
return outParams.ProcessId;
};
exports.getFilePath = function(path) {
exports.getEnvString = function(path) {
return WSH.ExpandEnvironmentStrings(path);
};
exports.get32BitFolder = function() {
var base = exports.getFilePath("%WINDIR%");
var base = exports.getEnvString("%WINDIR%");
var syswow64 = base + "\\SysWOW64\\";
if (JPTUDBSTOW.FS.FolderExists(syswow64))