refactor!(posix): replace simple [[ with [ (partial fix for #465)

This commit is contained in:
Marcin Woźniak
2022-08-21 03:06:08 +00:00
committed by AJ ONeal
parent 6051f6ab72
commit 48a16a315e
13 changed files with 48 additions and 48 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ set -e
set -u
__init_python() {
if [[ ! -x "${HOME}/.pyenv/bin/pyenv" ]]; then
if [ ! -x "${HOME}/.pyenv/bin/pyenv" ]; then
"${HOME}/.local/bin/webi" "pyenv"
fi
export PATH="${HOME}/.pyenv/bin:${PATH}"