0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Fix syntax error in colored-man-pages

Commit 09d2a597a5 introduced the bug, which is due to using
single brackets conditions at the same time as *.

This commit should fix it and use double brackets everywhere
else.

Fixes #4699
This commit is contained in:
Marc Cornellà 2015-12-15 11:52:48 +01:00
parent fe9ff63ced
commit 5e310c5308

View file

@ -1,6 +1,6 @@
if [ "$OSTYPE" = solaris* ]
if [[ "$OSTYPE" = solaris* ]]
then
if [ ! -x "$HOME/bin/nroff" ]
if [[ ! -x "$HOME/bin/nroff" ]]
then
mkdir -p "$HOME/bin"
cat > "$HOME/bin/nroff" <<EOF