From be5333aae50d33a6bfb3c5ea6455edeba0393d15 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Oct 2017 16:10:45 -0700 Subject: [PATCH] fixed space issue in bin/console (#200) --- symfony/framework-bundle/3.3/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symfony/framework-bundle/3.3/Makefile b/symfony/framework-bundle/3.3/Makefile index 6adf2383..09e392fb 100644 --- a/symfony/framework-bundle/3.3/Makefile +++ b/symfony/framework-bundle/3.3/Makefile @@ -1,4 +1,4 @@ -CONSOLE := $(shell which bin/console) +CONSOLE := $(shell printf %q "`which bin/console`") sf_console: ifndef CONSOLE @printf "Run \033[32mcomposer require cli\033[39m to install the Symfony console.\n"