Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-kuendig committed Sep 1, 2017
2 parents 97b9e0d + fe4d13b commit 23bca22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion october
Original file line number Diff line number Diff line change
Expand Up @@ -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();
4 changes: 2 additions & 2 deletions src/Downloader/OctoberCms.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -134,4 +134,4 @@ protected function alreadyInstalled($force)
return ! $force && is_dir(getcwd() . DS . 'bootstrap') && is_dir(getcwd() . DS . 'modules');
}

}
}

0 comments on commit 23bca22

Please sign in to comment.