mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Fix safeExecFileSync not returning output (#725)
This commit is contained in:
+1
-1
@@ -90,7 +90,7 @@ function getMetadataValidatorBinaryPaths(rootPath) {
|
||||
|
||||
function safeExecFileSync(file, args, options) {
|
||||
try {
|
||||
childProcess.execFileSync(file, args, options);
|
||||
return childProcess.execFileSync(file, args, options);
|
||||
} catch (error) {
|
||||
throw new Error(error.message);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user