Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
svpernova09 committed Nov 1, 2020
2 parents 40be5e3 + 40f4dbe commit af7ca89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.15.1');
$app = new Symfony\Component\Console\Application('Laravel Homestead', '10.15.2');

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

Expand Down
4 changes: 2 additions & 2 deletions scripts/homestead.rb
Original file line number Diff line number Diff line change
Expand Up @@ -534,9 +534,9 @@ def self.configure(config, settings)
end

settings['databases'].each do |db|
if enabled_databases.include? 'mysql'
if (enabled_databases.include? 'mysql') || (enabled_databases.include? 'mariadb')
config.vm.provision 'shell' do |s|
s.name = 'Creating MySQL Database: ' + db
s.name = 'Creating MySQL / MariaDB Database: ' + db
s.path = script_dir + '/create-mysql.sh'
s.args = [db]
end
Expand Down

0 comments on commit af7ca89

Please sign in to comment.