mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 09:40:22 -07:00
ripgrep: don't skip stdout in --files mode
Specifically, this avoids triggering Windows antimalware when in --files mode. See also #600. Fixes #1121
This commit is contained in:
parent
519a6b68af
commit
4691d11034
@ -786,7 +786,7 @@ impl ArgMatches {
|
|||||||
.max_filesize(self.max_file_size()?)
|
.max_filesize(self.max_file_size()?)
|
||||||
.threads(self.threads()?)
|
.threads(self.threads()?)
|
||||||
.same_file_system(self.is_present("one-file-system"))
|
.same_file_system(self.is_present("one-file-system"))
|
||||||
.skip_stdout(true)
|
.skip_stdout(!self.is_present("files"))
|
||||||
.overrides(self.overrides()?)
|
.overrides(self.overrides()?)
|
||||||
.types(self.types()?)
|
.types(self.types()?)
|
||||||
.hidden(!self.hidden())
|
.hidden(!self.hidden())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user