From ac8185339d2f5452088574479f35247ff03d9b8f Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 2 Oct 2017 20:32:42 -0700 Subject: [PATCH] Removed linebreaks --- upgrade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/upgrade.php b/upgrade.php index 9847387b6..0375c18f2 100644 --- a/upgrade.php +++ b/upgrade.php @@ -46,9 +46,9 @@ if ((strpos('git version', $git_version)) === false) { $git_checkout = shell_exec('git checkout '.$branch); $git_stash = shell_exec('git stash'); $git_pull = shell_exec('git pull'); - echo '-- '.$git_stash."\n"; - echo '-- '.$git_checkout."\n"; - echo '-- '.$git_pull."\n"; + echo '-- '.$git_stash; + echo '-- '.$git_checkout; + echo '-- '.$git_pull; } else { echo "Git is NOT installed. You can still use this upgrade script to run common \n"; echo "migration commands, but you will have to manually download the updated files. \n\n";