From 010e847835ad629620514685a199b1f7bc47eba5 Mon Sep 17 00:00:00 2001 From: Andy Heathershaw Date: Sun, 17 Sep 2017 12:33:10 +0100 Subject: [PATCH] #42: Slight fix to output order in composer update script --- public/update.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/update.php b/public/update.php index cc6346c..19628d7 100644 --- a/public/update.php +++ b/public/update.php @@ -104,6 +104,7 @@ php artisan clear-compiled return false; } + ob_start(); system('php artisan cache:clear', $rc); $result = ob_get_clean(); echo nl2br($result); @@ -113,6 +114,7 @@ php artisan clear-compiled return false; } + ob_start(); system('php artisan view:clear', $rc); $result = ob_get_clean(); echo nl2br($result);