diff --git a/src/model/cloud-runner/remote-client/index.ts b/src/model/cloud-runner/remote-client/index.ts index 3125a5c3..85e3221b 100644 --- a/src/model/cloud-runner/remote-client/index.ts +++ b/src/model/cloud-runner/remote-client/index.ts @@ -164,6 +164,7 @@ export class RemoteClient { CloudRunnerLogger.log(`Retained Workspace Already Exists!`); process.chdir(CloudRunnerFolders.repoPathAbsolute); await CloudRunnerSystem.Run(`git fetch`); + await CloudRunnerSystem.Run(`git lfs pull`); await CloudRunnerSystem.Run(`git reset --hard "${CloudRunner.buildParameters.gitSha}"`); await CloudRunnerSystem.Run(`git checkout ${CloudRunner.buildParameters.gitSha}`); diff --git a/src/model/cloud-runner/services/cloud-runner-custom-hooks.ts b/src/model/cloud-runner/services/cloud-runner-custom-hooks.ts index 6ef64af2..f51c32c0 100644 --- a/src/model/cloud-runner/services/cloud-runner-custom-hooks.ts +++ b/src/model/cloud-runner/services/cloud-runner-custom-hooks.ts @@ -62,7 +62,8 @@ echo "---${buildParameters.logId}"`; } catch (error) { RemoteClientLogger.log(`Failed Getting: ${hookLifecycle} \n ${JSON.stringify(error, undefined, 4)}`); } - RemoteClientLogger.log(`Active Steps From Hooks: \n ${JSON.stringify(results, undefined, 4)}`); + + // RemoteClientLogger.log(`Active Steps From Hooks: \n ${JSON.stringify(results, undefined, 4)}`); return results; }