Skip to content

Commit

Permalink
Update command in budget commands
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketC31 committed May 29, 2023
1 parent 90ca9d0 commit 460a4aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/BudgetInstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function handle(): void
}

$this->info('Compiling front-end assets');
$this->executeCommand([$nodePackageManager, 'run', 'production']);
$this->executeCommand([$nodePackageManager, 'run', 'build']);
}

if (!file_exists('.env')) {
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Commands/BudgetUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function handle(): void
}

$this->info('Compiling front-end assets');
$this->executeCommand([$nodePackageManager, 'run', 'production']);
$this->executeCommand([$nodePackageManager, 'run', 'build']);
}

// Destroy existing sessions
Expand Down

0 comments on commit 460a4aa

Please sign in to comment.