Skip to content

Commit 8ecd4d2

Browse files
committed
chore: fix typo
1 parent ca7e247 commit 8ecd4d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/util/misc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn uppercase_first(s: &str) -> String {
1010

1111
pub fn get_mcli_path() -> String {
1212
let home_dir = dirs::home_dir().expect("Couldn't get home directory");
13-
let mcli_path = format!("{}/.mcliUserA", home_dir.display());
13+
let mcli_path = format!("{}/.mcli", home_dir.display());
1414
if !Path::new(&mcli_path).exists() {
1515
fs::create_dir(&mcli_path).expect("Couldn't create mostro-cli directory in HOME");
1616
println!("Directory {} created.", mcli_path);

0 commit comments

Comments
 (0)