Commit 0351cf53 authored by Abdelrahman Omran's avatar Abdelrahman Omran Committed by Shao Yu-Lung (Allen)

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

parent 09e998b7
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment