mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-27 17:51:24 +02: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