diff --git a/scripts/helpers.js b/scripts/helpers.js index 71968438..491847d3 100644 --- a/scripts/helpers.js +++ b/scripts/helpers.js @@ -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); }