From fe4d13b6c5075d89fac9b59a8ccbfc18fc5cfad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20K=C3=BCndig?= Date: Fri, 1 Sep 2017 19:06:21 +0200 Subject: [PATCH] Fixed Build 419 to prevent problems during Laravel 5.5 update on octobercms/october --- october | 2 +- src/Downloader/OctoberCms.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/october b/october index 7cd396b..fe1c0c7 100755 --- a/october +++ b/october @@ -8,7 +8,7 @@ if (file_exists(__DIR__.'/../../autoload.php')) { require __DIR__.'/vendor/autoload.php'; } -$app = new Symfony\Component\Console\Application('October CMS Bootstrapper', '0.2.13'); +$app = new Symfony\Component\Console\Application('October CMS Bootstrapper', '0.2.14'); $app->add(new \OFFLINE\Bootstrapper\October\Console\InitCommand); $app->add(new \OFFLINE\Bootstrapper\October\Console\InstallCommand); $app->run(); diff --git a/src/Downloader/OctoberCms.php b/src/Downloader/OctoberCms.php index 1646d2e..d92fd83 100644 --- a/src/Downloader/OctoberCms.php +++ b/src/Downloader/OctoberCms.php @@ -54,7 +54,7 @@ public function download($force = false) */ protected function fetchZip() { - $response = (new Client)->get('https://github.com/octobercms/october/archive/master.zip'); + $response = (new Client)->get('https://github.com/octobercms/october/archive/v1.0.419.zip'); file_put_contents($this->zipFile, $response->getBody()); return $this; @@ -134,4 +134,4 @@ protected function alreadyInstalled($force) return ! $force && is_dir(getcwd() . DS . 'bootstrap') && is_dir(getcwd() . DS . 'modules'); } -} \ No newline at end of file +}