diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-04-29 13:47:02 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-04-29 13:50:05 -0400 |
commit | 666586085f82c2cdaad0f70757b596b53871c61b (patch) | |
tree | 653c5552d2d44df70514286bf22d83721a7b95ea | |
parent | 55c6f2e9570f90288b1a1519c9d05f882f96c89f (diff) |
gen-job-list: Don't hide output for fetch remotes
this is running slowly, we need to know which remote
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | src/bin/gen-job-list.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bin/gen-job-list.rs b/src/bin/gen-job-list.rs index 17cee94..49f6b19 100644 --- a/src/bin/gen-job-list.rs +++ b/src/bin/gen-job-list.rs @@ -5,7 +5,6 @@ use std::fs::File; use std::io::prelude::*; use std::path::{Path, PathBuf}; use std::process; -use std::process::Stdio; use ci_cgi::{CiConfig, Userrc, RcTestGroup, ciconfig_read, git_get_commit, commitdir_get_results, lockfile_exists, commit_update_results_from_fs, subtest_full_name, test_stats, users::RcBranch}; use ci_cgi::TestResultsMap; use file_lock::{FileLock, FileOptions}; @@ -252,8 +251,6 @@ fn fetch_remotes(rc: &CiConfig, repo: &git2::Repository) -> anyhow::Result<bool> .arg(&rc.ktest.linux_repo) .arg("fetch") .args(fetch) - .stdout(Stdio::piped()) - .stderr(Stdio::piped()) .status() .expect(&format!("failed to execute fetch")); if !status.success() { |