diff --git a/dist/index.js b/dist/index.js index e45b1d59..4d14878b 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 a7870535..07ade40e 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 e4e0fca3..5d27b9b8 100644 --- a/src/model/cloud-runner/remote-client/remote-client-logger.ts +++ b/src/model/cloud-runner/remote-client/remote-client-logger.ts @@ -41,11 +41,7 @@ export class RemoteClientLogger { CloudRunnerLogger.log(`Collected Logs`); let hashedLogs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString(); - // create hashed version of logs using md5sum - const startPath = process.cwd(); - process.chdir('/home'); hashedLogs = await await CloudRunnerSystem.Run(`md5sum ${RemoteClientLogger.LogFilePath}`); - process.chdir(startPath); CloudRunnerLogger.log(`LOGHASH: ${hashedLogs}`); const logs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString();