Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Displaying update output. #755

Merged
merged 1 commit into from
Dec 6, 2016
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/Composer/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected function executeBltUpdate($version) {

// Rsyncs, updates composer.json, project.yml, executes scripted updates for version delta.
$pre_composer_json = md5_file($this->getRepoRoot() . DIRECTORY_SEPARATOR . 'composer.json');
$success = $this->executeCommand('blt update');
$success = $this->executeCommand('blt update', [], TRUE);
if (!$success) {
$this->io->write("<error>BLT update script failed! Run `blt update -verbose` to retry.</error>");
}
Expand Down
7 changes: 1 addition & 6 deletions src/Update/Updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,7 @@ public function update_860() {
unset($project_config['modules']['deploy']);
}

// Update .travis.yml.
$this->updater->replaceInFile(
'.travis.yml',
" - drupal yaml:update:value project.yml project.local.hostname '127.0.0.1:8888'",
" - drupal yaml:update:value blt/project.yml project.local.hostname '127.0.0.1:8888'"
);
$this->updater->getOutput()->writeln("<comment>You MUST remove .travis.yml and re-initialize Travis CI support with `blt ci:travis:init`.</comment>");
}

}