diff --git a/phing/tasks/blt.xml b/phing/tasks/blt.xml
index 1c0b41d10..ac96fae44 100644
--- a/phing/tasks/blt.xml
+++ b/phing/tasks/blt.xml
@@ -23,7 +23,7 @@
- Updating composer dependencies, this make take a while...
+ Installing new Composer dependencies provided by BLT. This make take a while...
@@ -31,6 +31,10 @@
+
+ Your new BLT-based project has been created in ${repo.root}.
+ Please continue by following the "Creating a new project with BLT" instructions:
+ http://blt.readthedocs.io/en/8.x/readme/creating-new-project/
diff --git a/phing/tasks/setup.xml b/phing/tasks/setup.xml
index fca43a1f0..560bf25f6 100644
--- a/phing/tasks/setup.xml
+++ b/phing/tasks/setup.xml
@@ -210,7 +210,7 @@
-
+
diff --git a/tests/phpunit/BltProject/GitTest.php b/tests/phpunit/BltProject/GitTest.php
index dd70a9671..7768f99e2 100644
--- a/tests/phpunit/BltProject/GitTest.php
+++ b/tests/phpunit/BltProject/GitTest.php
@@ -92,7 +92,6 @@ protected function assertCommitMessageValidity($is_valid, $commit_message, $mess
// "2>&1" redirects standard error output to standard output.
$command = "mkdir -p {$this->projectDirectory}/tmp && echo '$commit_message' > {$this->projectDirectory}/tmp/blt_commit_msg && {$this->projectDirectory}/.git/hooks/commit-msg {$this->projectDirectory}/tmp/blt_commit_msg 2>&1";
- print "Executing \"$command\" \n";
exec($command, $output, $return);
$this->assertNotSame($is_valid, (bool) $return, $message);