Browse Source

fix github provider.

Taylor Otwell 13 years ago
parent
commit
cf33cae228
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/cli/tasks/bundle/providers/github.php

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

@@ -17,9 +17,9 @@ class Github implements Provider {
 		// If the installation target directory doesn't exist, we will create
 		// it recursively so that we can properly add the Git submodule for
 		// the bundle when we install.
-		if ( ! is_dir(path('bundle').$path))
+		if ( ! is_dir(dirname(path('bundle').$path)))
 		{
-			mkdir(path('bundle').$path, 0777, true);
+			mkdir(dirname(path('bundle').$path), 0777, true);
 		}
 
 		// We need to just extract the basename of the bundle path when