Browse Source

tweak provider to use temp directory to avoid latest confusions.

Taylor Otwell 13 years ago
parent
commit
1324ba368c
1 changed files with 6 additions and 2 deletions
  1. 6 2
      laravel/cli/tasks/bundle/providers/provider.php

+ 6 - 2
laravel/cli/tasks/bundle/providers/provider.php

@@ -39,9 +39,11 @@ abstract class Provider {
 		// Once we have the Zip archive, we can open it and extract it
 		// Once we have the Zip archive, we can open it and extract it
 		// into the working directory. By convention, we expect the
 		// into the working directory. By convention, we expect the
 		// archive to contain one root directory with the bundle.
 		// archive to contain one root directory with the bundle.
-		$zip->extractTo($work);
+		mkdir($work.'zip');
 
 
-		$latest = File::latest($work)->getRealPath();
+		$zip->extractTo($work.'zip');
+
+		$latest = File::latest($work.'zip')->getRealPath();
 
 
 		@chmod($latest, 0777);
 		@chmod($latest, 0777);
 
 
@@ -50,6 +52,8 @@ abstract class Provider {
 		// so the bundle will be usable by the develoepr.
 		// so the bundle will be usable by the develoepr.
 		File::mvdir($latest, $path);
 		File::mvdir($latest, $path);
 
 
+		File::rmdir($work.'zip');
+
 		@unlink($target);
 		@unlink($target);
 	}
 	}