Skip to content

Commit

Permalink
Fix BurntSushi#1121 - avoid triggering windows antimalware when in --…
Browse files Browse the repository at this point in the history
…files mode
  • Loading branch information
roblourens committed Nov 27, 2018
1 parent 1d4fcca commit 9166b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ impl ArgMatches {
.max_filesize(self.max_file_size()?)
.threads(self.threads()?)
.same_file_system(self.is_present("one-file-system"))
.skip_stdout(true)
.skip_stdout(!self.is_present("files"))
.overrides(self.overrides()?)
.types(self.types()?)
.hidden(!self.hidden())
Expand Down

0 comments on commit 9166b92

Please sign in to comment.