ts convention either inline or use braces

pull/355/head
Webber Takken 2022-03-11 16:08:38 +01:00 committed by GitHub
parent dc7a0d34b3
commit a5240d3e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -45,11 +45,9 @@ class Docker {
switch (baseOs) {
case 'linux':
const github_home = join(runnerTemporaryPath, "_github_home");
if (!existsSync(github_home))
mkdirSync(github_home);
if (!existsSync(github_home)) mkdirSync(github_home);
const github_workflow = join(runnerTemporaryPath, "_github_workflow");
if (!existsSync(github_workflow))
mkdirSync(github_workflow);
if (!existsSync(github_workflow)) mkdirSync(github_workflow);
return `--env UNITY_SERIAL \
--env GITHUB_WORKSPACE=/github/workspace \