Fix safeExecFileSync not returning output (#725)

This commit is contained in:
Oliver Hamlet
2016-12-06 10:09:02 +00:00
committed by GitHub
parent aec6962039
commit ba4f81dcad
+1 -1
View File
@@ -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);
}