ts convention either inline or use braces
parent
dc7a0d34b3
commit
a5240d3e47
|
|
@ -45,11 +45,9 @@ class Docker {
|
||||||
switch (baseOs) {
|
switch (baseOs) {
|
||||||
case 'linux':
|
case 'linux':
|
||||||
const github_home = join(runnerTemporaryPath, "_github_home");
|
const github_home = join(runnerTemporaryPath, "_github_home");
|
||||||
if (!existsSync(github_home))
|
if (!existsSync(github_home)) mkdirSync(github_home);
|
||||||
mkdirSync(github_home);
|
|
||||||
const github_workflow = join(runnerTemporaryPath, "_github_workflow");
|
const github_workflow = join(runnerTemporaryPath, "_github_workflow");
|
||||||
if (!existsSync(github_workflow))
|
if (!existsSync(github_workflow)) mkdirSync(github_workflow);
|
||||||
mkdirSync(github_workflow);
|
|
||||||
|
|
||||||
return `--env UNITY_SERIAL \
|
return `--env UNITY_SERIAL \
|
||||||
--env GITHUB_WORKSPACE=/github/workspace \
|
--env GITHUB_WORKSPACE=/github/workspace \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue