diff --git a/dist/index.js b/dist/index.js index 9e30fcc7..c53411bf 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 0ef0fb49..d098041c 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 abc7212e..b3bb5e2c 100644 --- a/src/model/cloud-runner/remote-client/remote-client-logger.ts +++ b/src/model/cloud-runner/remote-client/remote-client-logger.ts @@ -3,8 +3,6 @@ import fs from 'node:fs'; 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'; const md5 = require('md5'); export class RemoteClientLogger { @@ -56,9 +54,7 @@ export class RemoteClientLogger { let hashedLogs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString(); - process.chdir('/home/'); - hashedLogs = await CloudRunnerSystem.Run(`md5sum job-log.txt`); - process.chdir(CloudRunnerFolders.projectPathAbsolute); + hashedLogs = md5(hashedLogs); for (let index = 0; index < 3; index++) { CloudRunnerLogger.log(`LOGHASH: ${hashedLogs}`);