Cleanup logging
parent
f3532b52d5
commit
86015227db
|
|
@ -2058,7 +2058,7 @@ class DownloadRepository {
|
|||
yield run_cli_1.RunCli.RunCli(`git lfs install --skip-smudge`);
|
||||
cloud_runner_logger_1.default.logRemoteCli(cloud_runner_state_1.CloudRunnerState.targetBuildRepoUrl);
|
||||
yield run_cli_1.RunCli.RunCli(`
|
||||
git clone ${cloud_runner_state_1.CloudRunnerState.targetBuildRepoUrl} ${cloud_runner_state_1.CloudRunnerState.repoPathFull}
|
||||
git clone --progress --verbose ${cloud_runner_state_1.CloudRunnerState.targetBuildRepoUrl} ${cloud_runner_state_1.CloudRunnerState.repoPathFull}
|
||||
`);
|
||||
yield run_cli_1.RunCli.RunCli(`
|
||||
git checkout ${process.env.GITHUB_SHA}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -17,7 +17,7 @@ export class DownloadRepository {
|
|||
await RunCli.RunCli(`git lfs install --skip-smudge`);
|
||||
CloudRunnerLogger.logRemoteCli(CloudRunnerState.targetBuildRepoUrl);
|
||||
await RunCli.RunCli(`
|
||||
git clone ${CloudRunnerState.targetBuildRepoUrl} ${CloudRunnerState.repoPathFull}
|
||||
git clone --progress --verbose ${CloudRunnerState.targetBuildRepoUrl} ${CloudRunnerState.repoPathFull}
|
||||
`);
|
||||
await RunCli.RunCli(`
|
||||
git checkout ${process.env.GITHUB_SHA}
|
||||
|
|
|
|||
Loading…
Reference in New Issue