diff --git a/src/utils/windowsUtils.js b/src/utils/windowsUtils.js index 6d00caf..91870b1 100644 --- a/src/utils/windowsUtils.js +++ b/src/utils/windowsUtils.js @@ -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 {