Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kalyvitis committed Jun 24, 2020
1 parent a67896b commit 8530f5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/setup-tracer.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/setup-tracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8530f5b

Please sign in to comment.