Use `[[ ]]` instead of `test`
This commit is contained in:
parent
cb6351436a
commit
ae4650b40d
|
@ -1506,7 +1506,7 @@ function ask_zshrc_edit() {
|
||||||
r) return 1;;
|
r) return 1;;
|
||||||
n) return 0;;
|
n) return 0;;
|
||||||
y)
|
y)
|
||||||
test $__p9k_writeable_zsh || echo "Zshrc is readonly ignoring..."; return
|
[[ $__p9k_writeable_zsh ]] || echo "Zshrc is readonly ignoring..."; return
|
||||||
write_zshrc=1
|
write_zshrc=1
|
||||||
if [[ -n $zshrc_content ]]; then
|
if [[ -n $zshrc_content ]]; then
|
||||||
zshrc_backup="$(mktemp ${TMPDIR:-/tmp}/.zshrc.XXXXXXXXXX)" || quit -c
|
zshrc_backup="$(mktemp ${TMPDIR:-/tmp}/.zshrc.XXXXXXXXXX)" || quit -c
|
||||||
|
|
Loading…
Reference in New Issue