mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-22 23:23:42 -06:00
Reduced the number of includes by pointing to dcotrine scripts with extension
This commit is contained in:
parent
b4ded374e9
commit
8793a67ce9
0
data/infra/database/.gitignore
vendored
Normal file → Executable file
0
data/infra/database/.gitignore
vendored
Normal file → Executable file
0
data/infra/nginx/.gitignore
vendored
Normal file → Executable file
0
data/infra/nginx/.gitignore
vendored
Normal file → Executable file
@ -134,7 +134,7 @@ class InstallCommand extends Command
|
|||||||
if (! $this->isUpdate) {
|
if (! $this->isUpdate) {
|
||||||
$this->io->write('Initializing database...');
|
$this->io->write('Initializing database...');
|
||||||
if (! $this->runCommand(
|
if (! $this->runCommand(
|
||||||
'php vendor/doctrine/orm/bin/doctrine orm:schema-tool:create',
|
'php vendor/doctrine/orm/bin/doctrine.php orm:schema-tool:create',
|
||||||
'Error generating database.',
|
'Error generating database.',
|
||||||
$output
|
$output
|
||||||
)) {
|
)) {
|
||||||
@ -145,7 +145,7 @@ class InstallCommand extends Command
|
|||||||
// Run database migrations
|
// Run database migrations
|
||||||
$this->io->write('Updating database...');
|
$this->io->write('Updating database...');
|
||||||
if (! $this->runCommand(
|
if (! $this->runCommand(
|
||||||
'php vendor/doctrine/migrations/bin/doctrine-migrations migrations:migrate',
|
'php vendor/doctrine/migrations/bin/doctrine-migrations.php migrations:migrate',
|
||||||
'Error updating database.',
|
'Error updating database.',
|
||||||
$output
|
$output
|
||||||
)) {
|
)) {
|
||||||
@ -155,7 +155,7 @@ class InstallCommand extends Command
|
|||||||
// Generate proxies
|
// Generate proxies
|
||||||
$this->io->write('Generating proxies...');
|
$this->io->write('Generating proxies...');
|
||||||
if (! $this->runCommand(
|
if (! $this->runCommand(
|
||||||
'php vendor/doctrine/orm/bin/doctrine orm:generate-proxies',
|
'php vendor/doctrine/orm/bin/doctrine.php orm:generate-proxies',
|
||||||
'Error generating proxies.',
|
'Error generating proxies.',
|
||||||
$output
|
$output
|
||||||
)) {
|
)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user