We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7e247 commit 8ecd4d2Copy full SHA for 8ecd4d2
1 file changed
src/util/misc.rs
@@ -10,7 +10,7 @@ pub fn uppercase_first(s: &str) -> String {
10
11
pub fn get_mcli_path() -> String {
12
let home_dir = dirs::home_dir().expect("Couldn't get home directory");
13
- let mcli_path = format!("{}/.mcliUserA", home_dir.display());
+ let mcli_path = format!("{}/.mcli", home_dir.display());
14
if !Path::new(&mcli_path).exists() {
15
fs::create_dir(&mcli_path).expect("Couldn't create mostro-cli directory in HOME");
16
println!("Directory {} created.", mcli_path);
0 commit comments