fix filename reading from cli argument

This commit is contained in:
Dmitriy Kholkin 2024-02-02 22:18:52 +03:00
parent b811b63bd3
commit 271d5d8c6c
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

View File

@ -33,7 +33,7 @@ pub struct Config {
impl Config {
pub fn build(args: &[String]) -> Result<Config> {
let filename = match args.get(2) {
let filename = match args.get(1) {
Some(f) => f,
None => "config.toml",
};