Fix linting
parent
a5240d3e47
commit
02bb450d73
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in New Issue