Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions robo-components/DeploymentTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,9 @@ public function deployPantheonSync(string $env = 'test', bool $do_deploy = TRUE)
->exec("terminus remote:drush $pantheon_terminus_environment -- cim --no-interaction")
->exec("terminus remote:drush $pantheon_terminus_environment -- cim --no-interaction")
->exec("terminus remote:drush $pantheon_terminus_environment -- cr")
// Pre-warm the Twig template cache so the first anonymous request
// after deploy gets a cached hit.
->exec("terminus remote:drush $pantheon_terminus_environment -- twig:compile")
Comment thread
bboro marked this conversation as resolved.
->exec("terminus remote:drush $pantheon_terminus_environment -- deploy:hook --no-interaction")
->run()
->getExitCode();
Expand Down
Loading