From 1da09f24ee598192e2adb76a285d331c92ce0e4c Mon Sep 17 00:00:00 2001 From: Patrik Lermon Date: Thu, 25 Feb 2016 12:48:46 +0100 Subject: [PATCH] Update troubleshooting.md --- doc/articles/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/articles/troubleshooting.md b/doc/articles/troubleshooting.md index 4b63938cb..7f339a8e5 100644 --- a/doc/articles/troubleshooting.md +++ b/doc/articles/troubleshooting.md @@ -198,7 +198,7 @@ your setup. This also assumes that you have sudo privileges and the `php5enmod` commands available. It also assumes that you have `composer` in your path. ```sh -echo 'function composer() { COMPOSER="$(which composer)" || { echo "Could not find composer in path" ; return 1 ; } && sudo php5dismod -s cli xdebug ; $COMPOSER "$@" ; STATUS=$? ; sudo php5enmod -s cli xdebug ; return $STATUS ; }' >> ~/.bash_aliases +echo 'function composer() { COMPOSER="$(which composer)" || { echo "Could not find composer in path" >&2 ; return 1 ; } && sudo php5dismod -s cli xdebug ; $COMPOSER "$@" ; STATUS=$? ; sudo php5enmod -s cli xdebug ; return $STATUS ; }' >> ~/.bash_aliases . ~/.bash_aliases ```