Skip to content

Commit 7765df1

Browse files
authored
fix php7.1-xdebug because of missing new line
1 parent 422d6d8 commit 7765df1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

workspace/Dockerfile-71

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ ARG INSTALL_XDEBUG=false
133133
RUN if [ ${INSTALL_XDEBUG} = true ]; then \
134134
# Load the xdebug extension only with phpunit commands
135135
apt-get update && \
136-
apt-get install -y --force-yes php7.1-xdebug && \ sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \
136+
apt-get install -y --force-yes php7.1-xdebug && \
137+
sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \
137138
echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \
138139
;fi
139140
# ADD for REMOTE debugging

0 commit comments

Comments
 (0)