diff options
author | brettm12345 <brettmandler@gmail.com> | 2020-02-16 03:51:31 +0300 |
---|---|---|
committer | brettm12345 <brettmandler@gmail.com> | 2020-02-16 03:51:31 +0300 |
commit | 9cd3bfdea144f395794231d223666eff17e91306 (patch) | |
tree | a8953aa4fc30f325cac8dd79e4a7c3cebd5096b7 /internal | |
parent | fe27e57de6af93bf8ebc0905c5c926c12e783ed9 (diff) |
Warn user if they try to modify their `.zshrc`
Diffstat (limited to 'internal')
-rwxr-xr-x | internal/wizard.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/wizard.zsh b/internal/wizard.zsh index 8162b7c2..9546037c 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -1506,6 +1506,7 @@ function ask_zshrc_edit() { r) return 1;; n) return 0;; y) + test $__p9k_readonly_zsh echo "Zshrc is readonly ignoring..."; return write_zshrc=1 if [[ -n $zshrc_content ]]; then zshrc_backup="$(mktemp ${TMPDIR:-/tmp}/.zshrc.XXXXXXXXXX)" || quit -c @@ -1911,6 +1912,7 @@ if [[ -n $zshrc_backup ]]; then fi generate_config || return + change_zshrc || return print -rP "" |