Fix linting

pull/355/head
Paul Pacheco 2022-03-11 09:53:45 -06:00
parent a5240d3e47
commit 02bb450d73
1 changed files with 2 additions and 2 deletions

View File

@ -44,9 +44,9 @@ class Docker {
static getBaseOsSpecificArguments(baseOs, workspace, unitySerial, runnerTemporaryPath, sshAgent): string {
switch (baseOs) {
case 'linux':
const github_home = join(runnerTemporaryPath, "_github_home");
const github_home = join(runnerTemporaryPath, '_github_home');
if (!existsSync(github_home)) mkdirSync(github_home);
const github_workflow = join(runnerTemporaryPath, "_github_workflow");
const github_workflow = join(runnerTemporaryPath, '_github_workflow');
if (!existsSync(github_workflow)) mkdirSync(github_workflow);
return `--env UNITY_SERIAL \