diff --git a/dist/index.js b/dist/index.js index 7834e661..066eb825 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 87433d08..5d348d80 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/cloud-runner/remote-client/remote-client-logger.ts b/src/model/cloud-runner/remote-client/remote-client-logger.ts index f9764885..c6d1ce5e 100644 --- a/src/model/cloud-runner/remote-client/remote-client-logger.ts +++ b/src/model/cloud-runner/remote-client/remote-client-logger.ts @@ -2,7 +2,6 @@ import path from 'node:path'; import { CloudRunnerFolders } from '../options/cloud-runner-folders'; import CloudRunnerLogger from '../services/core/cloud-runner-logger'; import fs from 'node:fs'; -import { CloudRunnerSystem } from '../services/core/cloud-runner-system'; export class RemoteClientLogger { private static get LogFilePath() { @@ -12,7 +11,6 @@ export class RemoteClientLogger { public static log(message: string) { const finalMessage = `[Client] ${message}`; if (!fs.existsSync(CloudRunnerFolders.uniqueCloudRunnerJobFolderAbsolute)) { - CloudRunnerSystem.Run(`chmod -R a+rX /data/*`); fs.mkdirSync(CloudRunnerFolders.uniqueCloudRunnerJobFolderAbsolute); } if (!fs.existsSync(this.LogFilePath)) { diff --git a/src/model/cloud-runner/workflows/build-automation-workflow.ts b/src/model/cloud-runner/workflows/build-automation-workflow.ts index 1864023a..a4502b49 100644 --- a/src/model/cloud-runner/workflows/build-automation-workflow.ts +++ b/src/model/cloud-runner/workflows/build-automation-workflow.ts @@ -92,6 +92,7 @@ export class BuildAutomationWorkflow implements WorkflowInterface { return `export GIT_DISCOVERY_ACROSS_FILESYSTEM=1 ${cloneBuilderCommands} +chmod -R a+rX /data/* node ${builderPath} -m remote-cli-pre-build`; }