diff --git a/dist/index.js b/dist/index.js index f68ea4bd..e45b1d59 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 9b762ed3..a7870535 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 3a8833ec..e4e0fca3 100644 --- a/src/model/cloud-runner/remote-client/remote-client-logger.ts +++ b/src/model/cloud-runner/remote-client/remote-client-logger.ts @@ -4,7 +4,6 @@ import path from 'node:path'; import CloudRunner from '../cloud-runner'; import CloudRunnerOptions from '../options/cloud-runner-options'; import { CloudRunnerSystem } from '../services/core/cloud-runner-system'; -import { CloudRunnerFolders } from '../options/cloud-runner-folders'; export class RemoteClientLogger { private static get LogFilePath() { @@ -44,7 +43,7 @@ export class RemoteClientLogger { // create hashed version of logs using md5sum const startPath = process.cwd(); - process.chdir(path.resolve(CloudRunnerFolders.repoPathAbsolute, '..')); + process.chdir('/home'); hashedLogs = await await CloudRunnerSystem.Run(`md5sum ${RemoteClientLogger.LogFilePath}`); process.chdir(startPath);