|
@@ -22,9 +22,9 @@ abstract class Provider {
|
|
|
protected function zipball($bundle, $url)
|
|
|
{
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- $target = path('storage').'work/bundles/bundle.zip';
|
|
|
+
|
|
|
+
|
|
|
+ $target = path('storage').'work/laravel-bundle.zip';
|
|
|
|
|
|
File::put($target, file_get_contents($url));
|
|
|
|
|
@@ -36,7 +36,7 @@ abstract class Provider {
|
|
|
|
|
|
|
|
|
|
|
|
- $zip->extractTo(path('storage').'work/bundles');
|
|
|
+ $zip->extractTo(path('storage').'work');
|
|
|
|
|
|
$latest = File::latest(dirname($target));
|
|
|
|