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

Commit 3601f19

Browse files
authored
Reducing update output. (#894)
1 parent c680c4a commit 3601f19

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

phing/tasks/blt.xml

-7
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,9 @@
4545
</target>
4646

4747
<target name="update" depends="blt:rsync-template, blt:update-composer, blt:update-yml, blt:update-delta, cleanup" hidden="true">
48-
4948
<phingcall target="install-alias">
5049
<property name="create_alias" value="true"/>
5150
</phingcall>
52-
53-
<echo>Some of your customized files may have been modified.
54-
Please review changes with "git diff".
55-
Commit changes, or use "git add -p [filename]" to select which changes should be committed to each file.
56-
57-
To remove deprecated BLT files, run "blt cleanup".</echo>
5851
</target>
5952

6053
<target name="blt:update-delta" description="Performs scripted updates for a specific BLT version delta." hidden="true">

src/Composer/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ protected function executeBltUpdate($version) {
140140
$post_composer_json = md5_file($this->getRepoRoot() . DIRECTORY_SEPARATOR . 'composer.json');
141141

142142
if ($pre_composer_json != $post_composer_json) {
143-
$this->io->write('<error>Your composer.json file was modified, you MUST run "composer update" to update your composer.lock file.</error>');
143+
$this->io->write('<error>Your composer.json file was modified by BLT, you MUST run "composer update" to update your composer.lock file.</error>');
144144
}
145145
}
146146
else {

0 commit comments

Comments
 (0)