Change default for config

This commit is contained in:
Dheepak Krishnamurthy 2020-10-23 12:17:17 -06:00
parent 70474f0bd8
commit ef85403c56

View file

@ -35,7 +35,7 @@ fn main() -> Result<(), Box<dyn Error>> {
)
.get_matches();
let config = matches.value_of("config").unwrap_or("default.conf");
let config = matches.value_of("config").unwrap_or("~/.taskrc");
tui_main(config)?;
Ok(())
}