Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'main' into simon-engledew/fix-runner-temp-missing
Andrew Eisenberg authored and GitHub committed Jun 24, 2021

Unverified

No user is associated with the committer email.
2 parents 26ade03 + 590c245 commit af32a29
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/analysis-paths.js

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

2 changes: 1 addition & 1 deletion lib/analysis-paths.js.map

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

4 changes: 3 additions & 1 deletion src/analysis-paths.ts
@@ -4,7 +4,9 @@ import * as configUtils from "./config-utils";
import { Logger } from "./logging";

function isInterpretedLanguage(language): boolean {
return language === "javascript" || language === "python";
return (
language === "javascript" || language === "python" || language === "ruby"
);
}

// Matches a string containing only characters that are legal to include in paths on windows.

0 comments on commit af32a29

Please sign in to comment.