aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 2973b27..1738391 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,8 +27,6 @@ struct Args {
#[clap(short, long)]
filter: Option<String>,
#[clap(short, long)]
- path: Option<String>,
- #[clap(short, long)]
no_color: bool,
files: Vec<String>,
}
@@ -62,7 +60,6 @@ fn main() {
for file in args.files_iter() {
match executor.execute(file, &output, args.jq_filter()) {
- //match run_file(&args, &mut executor, file) {
Ok(()) => (),
Err(err) => println!("{}", err),
}