Use retained workspace :O

pull/461/head
Frostebite 2022-10-05 00:34:57 +01:00
parent 8bc044ee66
commit 5a3613114b
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -5117,7 +5117,7 @@ class BuildAutomationWorkflow {
chmod +x ${builderPath}`;
return `export GIT_DISCOVERY_ACROSS_FILESYSTEM=1
echo "game ci cloud runner clone"
if [ -d ${cloud_runner_folders_1.CloudRunnerFolders.ToLinuxFolder(cloud_runner_folders_1.CloudRunnerFolders.builderPathAbsolute)} ]; then echo "Retained Workspace Already Exists!"; else ${commands.replace(`\n`, ` && `)} fi
if [ -d ${cloud_runner_folders_1.CloudRunnerFolders.ToLinuxFolder(cloud_runner_folders_1.CloudRunnerFolders.builderPathAbsolute)} ]; then echo "Retained Workspace Already Exists!"; else ${commands.replace(`\n`, ` && `)}; fi
echo "game ci cloud runner bootstrap"
node ${builderPath} -m remote-cli`;
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -128,7 +128,7 @@ export class BuildAutomationWorkflow implements WorkflowInterface {
echo "game ci cloud runner clone"
if [ -d ${CloudRunnerFolders.ToLinuxFolder(
CloudRunnerFolders.builderPathAbsolute,
)} ]; then echo "Retained Workspace Already Exists!"; else ${commands.replace(`\n`, ` && `)} fi
)} ]; then echo "Retained Workspace Already Exists!"; else ${commands.replace(`\n`, ` && `)}; fi
echo "game ci cloud runner bootstrap"
node ${builderPath} -m remote-cli`;
}