From 6abfdbde3289493ed78f0736cef0d7ef1d71487f Mon Sep 17 00:00:00 2001 From: Taras Machyshyn Date: Mon, 7 Apr 2014 13:29:33 +0300 Subject: [PATCH] improve helpers for install --- install/core/SystemHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/core/SystemHelper.php b/install/core/SystemHelper.php index 81c7b11fe5..504dabe18d 100644 --- a/install/core/SystemHelper.php +++ b/install/core/SystemHelper.php @@ -253,7 +253,7 @@ class SystemHelper $commands[] = $chown; } - return implode(' && ', $commands); + return implode('; ', $commands); } }