Skip to content

Commit 077891f

Browse files
committed
fixed: an important bug
1 parent 8c1a37a commit 077891f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ struct ConfigFile {
1010
}
1111

1212
pub fn read_config() -> eyre::Result<Vec<Connection>> {
13-
let home = std::env::var("HOM").wrap_err("Failed to read HOME environment variable")?;
13+
let home = std::env::var("HOME").wrap_err("Failed to read HOME environment variable")?;
1414

1515
// Full path to the toml config file.
1616
let toml_path = PathBuf::from(home)

0 commit comments

Comments
 (0)