remove typo - double await

This commit is contained in:
Frostebite 2023-08-17 17:54:20 +01:00
parent eba396b69e
commit 39392a1578
3 changed files with 1 additions and 1 deletions

BIN
dist/index.js generated vendored

Binary file not shown.

BIN
dist/index.js.map generated vendored

Binary file not shown.

View File

@ -41,7 +41,7 @@ export class RemoteClientLogger {
CloudRunnerLogger.log(`Collected Logs`);
let hashedLogs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString();
hashedLogs = await await CloudRunnerSystem.Run(`md5sum ${RemoteClientLogger.LogFilePath}`);
hashedLogs = await CloudRunnerSystem.Run(`md5sum ${RemoteClientLogger.LogFilePath}`);
for (let index = 0; index < 3; index++) {
CloudRunnerLogger.log(`LOGHASH: ${hashedLogs}`);