From b989594c82d8b722e443720adc2691737f42b425 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 2 Feb 2012 15:54:28 -0600 Subject: [PATCH] clean up a few things. --- laravel/cli/tasks/bundle/providers/github.php | 2 +- laravel/cli/tasks/bundle/providers/provider.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/cli/tasks/bundle/providers/github.php b/laravel/cli/tasks/bundle/providers/github.php index 83d08205..aa504da8 100644 --- a/laravel/cli/tasks/bundle/providers/github.php +++ b/laravel/cli/tasks/bundle/providers/github.php @@ -29,7 +29,7 @@ protected function zipball($bundle) parent::zipball($bundle, $url, true); - echo "Bundle [{$bundle['name']} has been installed!".PHP_EOL; + echo "Bundle [{$bundle['name']}] has been installed!".PHP_EOL; } /** diff --git a/laravel/cli/tasks/bundle/providers/provider.php b/laravel/cli/tasks/bundle/providers/provider.php index 54b93f9f..50f85956 100644 --- a/laravel/cli/tasks/bundle/providers/provider.php +++ b/laravel/cli/tasks/bundle/providers/provider.php @@ -45,7 +45,7 @@ protected function zipball($bundle, $url) // so the bundle will be usable by the develoepr. $path = $this->path($bundle); - File::cpdir($latest->getRealPath(), path('bundle').$path); + File::mvdir($latest->getRealPath(), path('bundle').$path); @unlink($target); }