File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ protected static function pathExists($packageName,$path) {
511
511
*/
512
512
public static function postInstallCmd ($ installerInfo , $ event ) {
513
513
514
- self ::packagesInstall ($ installerInfo );
514
+ self ::packagesInstall ($ installerInfo, $ event );
515
515
516
516
}
517
517
@@ -523,7 +523,7 @@ public static function postInstallCmd($installerInfo, $event) {
523
523
public static function postUpdateCmd ($ installerInfo , $ event ) {
524
524
525
525
if (!$ installerInfo ["packagesRemove " ]) {
526
- self ::packagesInstall ($ installerInfo );
526
+ self ::packagesInstall ($ installerInfo, $ event );
527
527
}
528
528
529
529
}
@@ -581,7 +581,9 @@ protected static function removeDots($path) {
581
581
* Handle some Pattern Lab specific tasks based on what's found in the package's composer.json file on install
582
582
* @param {Array} the info culled from installing various pattern lab-related packages
583
583
*/
584
- protected static function packagesInstall ($ installerInfo ) {
584
+ protected static function packagesInstall ($ installerInfo , $ event ) {
585
+
586
+ print_r ($ event ->getArguments ());
585
587
586
588
// initialize a bunch of stuff like config and console
587
589
self ::init ();
You can’t perform that action at this time.
0 commit comments