mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-10 22:18:54 +01:00
lint: Use git --no-pager to print any output in one go
This commit is contained in:
@@ -14,7 +14,9 @@ type LintFn = fn() -> LintResult;
|
||||
|
||||
/// Return the git command
|
||||
fn git() -> Command {
|
||||
Command::new("git")
|
||||
let mut git = Command::new("git");
|
||||
git.arg("--no-pager");
|
||||
git
|
||||
}
|
||||
|
||||
/// Return stdout
|
||||
|
||||
Reference in New Issue
Block a user