Fix formatting

This commit is contained in:
Peter Fernandes
2020-12-09 17:17:31 -05:00
parent 15248bf85a
commit b5f708a1e6

View File

@ -195,7 +195,9 @@ async function checkInputFilesValid(files) {
`Warning: Input file does not exist: ${resolvePath(file)}`,
);
continue;
} else throw err;
} else {
throw err;
}
}
validFiles.push(file);