aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-09 12:40:21 +0100
committerEllie Huxtable <e@elm.sh>2021-04-09 12:40:21 +0100
commit9f16f76bd8d15824e27e971245ea93271fe76b29 (patch)
tree6687ec0f743edb682dbb9f04f688fd059f404174 /src/main.rs
parentBump rusqlite from 0.24.2 to 0.25.0 (#30) (diff)
downloadatuin-9f16f76bd8d15824e27e971245ea93271fe76b29.zip
Update config
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 3c4a05e4..bac75362 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -62,7 +62,7 @@ impl Atuin {
let path = shellexpand::full(path)?;
PathBuf::from(path.as_ref())
} else {
- PathBuf::from(settings.local.db.path.as_str())
+ PathBuf::from(settings.local.db_path.as_str())
};
let mut db = Sqlite::new(db_path)?;