Fix minor syntax issue that solves "[/bin/sh: 1: [: missing ]" error (#1649)

This commit is contained in:
Abdelrahman Omran 2018-06-27 12:47:42 +02:00 committed by Shao Yu-Lung (Allen)
parent 09e998b723
commit 0351cf531b

View File

@ -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