Fix minor syntax issue that solves "[/bin/sh: 1: [: missing ]" error (#1649)
This commit is contained in:
parent
09e998b723
commit
0351cf531b
|
@ -203,7 +203,7 @@ RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
|
|||
###########################################################################
|
||||
|
||||
ARG INSTALL_PCNTL=false
|
||||
RUN if [ ${INSTALL_PCNTL} = true]; then \
|
||||
RUN if [ ${INSTALL_PCNTL} = true ]; then \
|
||||
# Installs pcntl, helpful for running Horizon
|
||||
docker-php-ext-install pcntl \
|
||||
;fi
|
||||
|
|
Loading…
Reference in New Issue