diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2019-11-04 20:51:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-04 20:51:00 +0300 |
commit | fc0274de2c2d71174d36ff7ffb7d256d2f145b44 (patch) | |
tree | f789651b53c5c57c35fdb563e222e53a39af3381 | |
parent | 50c82140382fc5ceff0e5a9227e165e484eae373 (diff) |
Don't choke on empty zshrc.
-rwxr-xr-x | internal/wizard.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index 383cd705..3c0b2f6b 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -1368,8 +1368,8 @@ function ask_zshrc_edit() { cp -p $__p9k_zshrc $zshrc_backup || quit -c print -r -- $zshrc_content >$zshrc_backup || quit -c zshrc_backup_u=${${TMPDIR:+\$TMPDIR}:-/tmp}/${(q-)zshrc_backup:t} - break fi + break ;; esac done |