Skip to content

Commit

Permalink
Change version constraint to not show beta builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
svpernova09 committed Jun 30, 2020
1 parent 8e2ddd4 commit 7107511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/homestead
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

require __DIR__.'/../../../autoload.php';

$app = new Symfony\Component\Console\Application('Laravel Homestead', '10.9.2');
$app = new Symfony\Component\Console\Application('Laravel Homestead', '10.10.0');

$app->add(new Laravel\Homestead\MakeCommand);

Expand Down
2 changes: 1 addition & 1 deletion scripts/homestead.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def self.configure(config, settings)
config.vm.define settings['name'] ||= 'homestead'
config.vm.box = settings['box'] ||= 'laravel/homestead'
unless settings.has_key?('SpeakFriendAndEnter')
config.vm.box_version = settings['version'] ||= '>= 9.5.0'
config.vm.box_version = settings['version'] ||= '~> 9.5.0'
end
config.vm.hostname = settings['hostname'] ||= 'homestead'

Expand Down

0 comments on commit 7107511

Please sign in to comment.