From a5240d3e47c0c4179d0509e43db6cfb7f3bd1465 Mon Sep 17 00:00:00 2001 From: Webber Takken Date: Fri, 11 Mar 2022 16:08:38 +0100 Subject: [PATCH] ts convention either inline or use braces --- src/model/docker.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/model/docker.ts b/src/model/docker.ts index 07b4d152..bd2875cf 100644 --- a/src/model/docker.ts +++ b/src/model/docker.ts @@ -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 \