Browse Source

clean up a few things.

Taylor Otwell 13 years ago
parent
commit
b989594c82

+ 1 - 1
laravel/cli/tasks/bundle/providers/github.php

@@ -29,7 +29,7 @@ class Github extends Provider {
 
 
 		parent::zipball($bundle, $url, true);
 		parent::zipball($bundle, $url, true);
 
 
-		echo "Bundle [{$bundle['name']} has been installed!".PHP_EOL;
+		echo "Bundle [{$bundle['name']}] has been installed!".PHP_EOL;
 	}
 	}
 
 
 	/**
 	/**

+ 1 - 1
laravel/cli/tasks/bundle/providers/provider.php

@@ -45,7 +45,7 @@ abstract class Provider {
 		// so the bundle will be usable by the develoepr.
 		// so the bundle will be usable by the develoepr.
 		$path = $this->path($bundle);
 		$path = $this->path($bundle);
 
 
-		File::cpdir($latest->getRealPath(), path('bundle').$path);
+		File::mvdir($latest->getRealPath(), path('bundle').$path);
 
 
 		@unlink($target);
 		@unlink($target);
 	}
 	}