diff --git a/dist/index.js b/dist/index.js index 27a94849..8d8b1d55 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 36beae3c..dcb72773 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 10ca6fe9..4ad5c9cc 100644 --- a/src/model/cloud-runner/remote-client/remote-client-logger.ts +++ b/src/model/cloud-runner/remote-client/remote-client-logger.ts @@ -41,7 +41,10 @@ export class RemoteClientLogger { CloudRunnerLogger.log(`Collected Logs`); let hashedLogs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString(); - hashedLogs = await CloudRunnerSystem.Run(`md5sum ${RemoteClientLogger.LogFilePath}`); + const directory = process.cwd(); + process.chdir('/home'); + hashedLogs = await CloudRunnerSystem.Run(`md5sum job-log.txt`); + process.chdir(directory); for (let index = 0; index < 3; index++) { CloudRunnerLogger.log(`LOGHASH: ${hashedLogs}`);