Skip to content

Commit

Permalink
fix: can now remove project from checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lukors committed Nov 26, 2021
1 parent ab7de2a commit b7f168f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ fn edit_checkpoint(matches: &clap::ArgMatches, config: &Config) -> io::Result<()
}

// Project
let no_project = matches.is_present("no_project");
let no_project = matches.is_present("no-project");
if matches.is_present("project") && no_project {
println!("Can't use both `project` and `no-project` flags");
return Ok(());
Expand Down

0 comments on commit b7f168f

Please sign in to comment.