fix: evaluation alias

This commit is contained in:
iff 2023-08-12 23:00:23 +02:00
parent cb38df3c37
commit 1d78b20404

View file

@ -197,7 +197,7 @@ pub fn initialization(shell: &str, binary_path: &str, auto_alias: &str) {
match shell {
"bash" | "zsh" => {
init = format!(r#"alias {}=eval '$({})'"#, auto_alias, init);
init = format!(r#"alias {}='{}'"#, auto_alias, init);
}
"fish" => {
init = format!(