From 7765df107610cea6a019419786356dec6d6d7dd6 Mon Sep 17 00:00:00 2001 From: Ujjwal Ojha Date: Sat, 8 Jul 2017 10:00:52 +0545 Subject: [PATCH] fix php7.1-xdebug because of missing new line --- workspace/Dockerfile-71 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 14fb2957..e5525c12 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -133,7 +133,8 @@ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands apt-get update && \ - apt-get install -y --force-yes php7.1-xdebug && \ sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ + apt-get install -y --force-yes php7.1-xdebug && \ + sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging