Merge branch 'main' into simon-engledew/fix-runner-temp-missing

This commit is contained in:
Andrew Eisenberg 2021-06-24 13:48:45 -07:00 committed by GitHub
commit af32a29f03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -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.