diff options
author | Nathan Lilienthal <nathan@nixpulvis.com> | 2024-05-15 18:38:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-15 22:38:13 +0000 |
commit | 3cd35dfe7efe894853ac9251891b37baee440002 (patch) | |
tree | d81034fe9efe26ea506d03055f2e9806f5af5a61 /alacritty_terminal | |
parent | 3a7f21b00c50748016bc4aa2916b13b5a2e27b76 (diff) | |
download | alacritty-3cd35dfe7efe894853ac9251891b37baee440002.tar.gz alacritty-3cd35dfe7efe894853ac9251891b37baee440002.zip |
Ignore shell RCs for macOS zsh wrapper
Closes #7886.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r-- | alacritty_terminal/src/tty/unix.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/tty/unix.rs b/alacritty_terminal/src/tty/unix.rs index 54118a58..1336fd04 100644 --- a/alacritty_terminal/src/tty/unix.rs +++ b/alacritty_terminal/src/tty/unix.rs @@ -177,7 +177,7 @@ fn default_shell_command(shell: &str, user: &str) -> Command { // -p: Preserves the environment. // // XXX: we use zsh here over sh due to `exec -a`. - login_command.args(["-flp", user, "/bin/zsh", "-c", &exec]); + login_command.args(["-flp", user, "/bin/zsh", "-fc", &exec]); login_command } |