add missing semicolon

This commit is contained in:
Alex Kalyvitis 2020-06-24 14:37:12 +02:00
parent a67896b792
commit 8530f5b76a
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -156,7 +156,7 @@ async function run() {
// If the languages parameter was not given and no languages were
// detected then fail here as this is a workflow configuration error.
if (languages.length === 0) {
throw new Error("Did not detect any languages to analyze. Please update input in workflow.")
throw new Error("Did not detect any languages to analyze. Please update input in workflow.");
}
analysisPaths.includeAndExcludeAnalysisPaths(config, languages);