Update registry.js

This commit is contained in:
Namhyeon Go 2021-12-09 16:48:53 +09:00
parent 626437ec1a
commit c525393785

View File

@ -115,12 +115,6 @@ exports.create = function(hiveKey, path, key, computer) {
} }
*/ */
exports.importFromFile = function(fileName) { exports.execFile = function(FN) {
var arguments = []; return SHELL.exec(["reg", "import", FN].join(' '));
arguments.push("reg");
arguments.push("import");
arguments.push(fileName);
return SHELL.exec(arguments.join(' '));
}; };