diff --git a/dist/index.js b/dist/index.js index 0d2cdd0a..c547c47d 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 d890de7d..a4d57d02 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 ad9d4299..82cc6538 100644 --- a/src/model/cloud-runner/remote-client/remote-client-logger.ts +++ b/src/model/cloud-runner/remote-client/remote-client-logger.ts @@ -1,9 +1,11 @@ import CloudRunnerLogger from '../services/core/cloud-runner-logger'; import fs from 'node:fs'; +import path from 'node:path'; +import { CloudRunnerFolders } from '../options/cloud-runner-folders'; export class RemoteClientLogger { private static get LogFilePath() { - return `job-log.txt`; + return path.join(CloudRunnerFolders.builderPathAbsolute, `job-log.txt`); } public static log(message: string) {