mirror of
https://github.com/jbcr/core.git
synced 2026-03-25 17:32:07 +01:00
17 lines
498 B
PHP
17 lines
498 B
PHP
<?php
|
|
|
|
namespace Bolt\ComposerScripts;
|
|
|
|
class PostUpdateScript extends Script
|
|
{
|
|
public static function execute(): void
|
|
{
|
|
parent::init('Running composer "post-update-cmd" scripts');
|
|
|
|
self::run('php bin/console extensions:configure --with-config --ansi');
|
|
self::run('php bin/console cache:clear --no-warmup --ansi');
|
|
self::run('php bin/console assets:install --symlink --relative public --ansi');
|
|
self::run('php bin/console bolt:info --ansi');
|
|
}
|
|
}
|