Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Morganamilo committed Apr 12, 2022
1 parent df382ce commit 6ef418b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/command_line.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,9 @@ impl Config {
Arg::Long("comments") => self.comments = true,
Arg::Long("ssh") => self.ssh = true,
Arg::Long("failfast") => self.fail_fast = true,
Arg::Long("nofailfast") => self.fail_fast = true,
Arg::Long("nofailfast") => self.fail_fast = false,
Arg::Long("keepsrc") => self.keep_src = true,
Arg::Long("nokeepsrc") => self.keep_src = false,
// ops
Arg::Long("database") | Arg::Short('D') => set_op(Op::Database),
Arg::Long("files") | Arg::Short('F') => set_op(Op::Files),
Expand Down

0 comments on commit 6ef418b

Please sign in to comment.