added bundle fetching notification for bundle:install

Signed-off-by: Dayle Rees <thepunkfan@gmail.com>
This commit is contained in:
Dayle Rees 2012-03-02 11:40:16 +00:00
parent c88433f16a
commit 601b29a9d1
1 changed files with 3 additions and 2 deletions

View File

@ -53,9 +53,10 @@ public function install($bundles)
// hosting party and installing it into the application.
$path = path('bundle').$this->path($bundle);
echo "Fetching [{$bundle['name']}]...";
$this->download($bundle, $path);
echo "Bundle [{$bundle['name']}] installed!".PHP_EOL;
echo "done! Bundle installed.".PHP_EOL;
}
}
@ -200,4 +201,4 @@ protected function path($bundle)
return array_get($bundle, 'path', $bundle['name']);
}
}
}