From ea95789078bd15b2be10cdfadfa78577413219ba Mon Sep 17 00:00:00 2001 From: brettm12345 Date: Sat, 15 Feb 2020 20:12:08 -0500 Subject: [PATCH] Return an error --- internal/wizard.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/wizard.zsh b/internal/wizard.zsh index f521e925..3479253f 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -1506,7 +1506,7 @@ function ask_zshrc_edit() { r) return 1;; n) return 0;; y) - [[ ! -e $__p9k_zshrc || -w $__p9k_zshrc ]] || echo "Zshrc is readonly ignoring..."; return + [[ ! -e $__p9k_zshrc || -w $__p9k_zshrc ]] || echo "Zshrc is readonly ignoring..."; return 1 write_zshrc=1 if [[ -n $zshrc_content ]]; then zshrc_backup="$(mktemp ${TMPDIR:-/tmp}/.zshrc.XXXXXXXXXX)" || quit -c