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) {
var arguments = [];
arguments.push("reg");
arguments.push("import");
arguments.push(fileName);
return SHELL.exec(arguments.join(' '));
exports.execFile = function(FN) {
return SHELL.exec(["reg", "import", FN].join(' '));
};