From 8cefa7f5956e9a4d077d97ac159ae6acb009c733 Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Mon, 10 Jul 2017 17:34:43 +1200 Subject: [PATCH] Clarify file copying log output --- src/RecipeInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RecipeInstaller.php b/src/RecipeInstaller.php index b0fc018..fefa069 100644 --- a/src/RecipeInstaller.php +++ b/src/RecipeInstaller.php @@ -52,7 +52,7 @@ class RecipeInstaller extends LibraryInstaller { ); } } else { - $this->io->write(" - Installing $relativePath"); + $this->io->write(" - Copying $relativePath"); $this->filesystem->ensureDirectoryExists(dirname($destination)); copy($path, $destination); }