Skip to content

Commit

Permalink
Use --restart by default
Browse files Browse the repository at this point in the history
Noticed I forgot this for #25, oh no
  • Loading branch information
passcod authored Apr 18, 2017
1 parent e57e8b5 commit 2c904c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ fn get_filter(matches: &ArgMatches) -> Vec<String> {
}

fn get_settings(matches: &ArgMatches) -> Vec<String> {
let mut opts: Vec<String> = vec![];
let mut opts: Vec<String> = vec![
"--restart".into()
];

if matches.is_present("clear") {
opts.push("--clear".into());
Expand Down

0 comments on commit 2c904c0

Please sign in to comment.