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

Commit fd7f24e

Browse files
committed
Displaying update output.
1 parent d012ef7 commit fd7f24e

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/Composer/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ protected function executeBltUpdate($version) {
133133

134134
// Rsyncs, updates composer.json, project.yml, executes scripted updates for version delta.
135135
$pre_composer_json = md5_file($this->getRepoRoot() . DIRECTORY_SEPARATOR . 'composer.json');
136-
$this->executeCommand('blt update');
136+
$this->executeCommand('blt update', [], TRUE);
137137
$post_composer_json = md5_file($this->getRepoRoot() . DIRECTORY_SEPARATOR . 'composer.json');
138138

139139
if ($pre_composer_json != $post_composer_json) {

src/Update/Updates.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,7 @@ public function update_860() {
6363
unset($project_config['modules']['deploy']);
6464
}
6565

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

7469
}

0 commit comments

Comments
 (0)