|
@@ -55,4 +55,23 @@ class Github extends Provider {
|
|
|
passthru('git submodule update');
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Create the path to the bundle's dirname.
|
|
|
+ *
|
|
|
+ * @param array $bundle
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ protected function directory($bundle)
|
|
|
+ {
|
|
|
+ // If the installation target directory doesn't exist, we will create
|
|
|
+ // it recursively so that we can properly install the bundle to the
|
|
|
+ // correct path in the application.
|
|
|
+ $target = dirname(path('bundle').$this->path($bundle));
|
|
|
+
|
|
|
+ if ( ! is_dir($target))
|
|
|
+ {
|
|
|
+ mkdir($target, 0777, true);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|