From 4fb804efc6bf0f97d9c1befc1ec6a9038fe868d4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 23 Oct 2021 18:55:55 +0530 Subject: [PATCH] ... --- kitty/shell_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/shell_integration.py b/kitty/shell_integration.py index 4d40247ed..2ea4fa778 100644 --- a/kitty/shell_integration.py +++ b/kitty/shell_integration.py @@ -53,7 +53,7 @@ def setup_integration(shell_name: str, rc_path: str, template: str = posix_templ def setup_zsh_integration() -> None: base = os.environ.get('ZDOTDIR', os.path.expanduser('~')) rc = os.path.join(base, '.zshrc') - if os.path.exists(rc): + if os.path.exists(rc): # dont prevent zsh-newuser-install from running setup_integration('zsh', rc)