1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-02 02:56:32 +02:00

cli: remove stray dbg!

Whoops, forgot to review my commits before pushing.
This commit is contained in:
Andrew Gallant 2024-02-15 12:02:15 -05:00
parent 4a30819302
commit e92e2ef813
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44

View File

@ -182,7 +182,6 @@ pub fn is_readable_stdin() -> bool {
let file = File::from(fd);
let Ok(md) = file.metadata() else { return false };
let ft = md.file_type();
dbg!(&ft);
ft.is_file() || ft.is_fifo() || ft.is_socket()
}