Browse Source

improve work directory cleanup.

Taylor Otwell 13 years ago
parent
commit
e21d914c1c
2 changed files with 3 additions and 1 deletions
  1. 2 0
      laravel/cli/tasks/bundle/providers/provider.php
  2. 1 1
      laravel/file.php

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

@@ -40,6 +40,8 @@ abstract class Provider {
 
 		$latest = File::latest(dirname($target));
 
+		@chmod($latest->getRealPath(), 0777);
+
 		// Once we have the latest modified directory, we should be
 		// able to move its contents over into the bundles folder
 		// so the bundle will be usable by the develoepr.

+ 1 - 1
laravel/file.php

@@ -222,7 +222,7 @@ class File {
 			{
 				$path = $item->getRealPath();
 
-				static::cpdir($path, $location);
+				static::cpdir($path, $location, $delete, $options);
 
 				if ($delete) @rmdir($item->getRealPath());
 			}