[WindowsUtils] Fix variable using const

main
Oj 2 years ago
parent e8a5ceedb6
commit 6c0edb9275

@ -4,7 +4,7 @@ const { join } = require('path');
const regExePath = process.env.SystemRoot ? join(process.env.SystemRoot, 'System32', 'reg.exe') : 'reg.exe';
const spawn = (cmd, args, callback = (() => {})) => {
const stdout = '';
let stdout = '';
let process;
try {

Loading…
Cancel
Save