From 274d80cd8b83e6ed6327a537f0fb0dd426d266c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20BENO=C3=8ET?= Date: Sun, 29 Dec 2024 21:34:14 +0100 Subject: [PATCH] fix: add missing `]` in default zshrc --- ansible/files/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/files/zshrc b/ansible/files/zshrc index 84d770e..a17f5c7 100644 --- a/ansible/files/zshrc +++ b/ansible/files/zshrc @@ -69,7 +69,7 @@ alias rm='rm -i' alias mv='mv -i' # Load Rust environment if it exists -[[ ! -f ~/.cargo/env ] || source ~/.cargo/env +[[ ! -f ~/.cargo/env ]] || source ~/.cargo/env # Pyenv venv aliases export PYENV_VIRTUALENV_DISABLE_PROMPT=1