Skip to content

Commit

Permalink
Fix: Run script also after install
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnitto committed Apr 25, 2024
1 parent 8a945f1 commit 6101cf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Composer
* @return void
* @throws FilesException
*/
public static function postPackageUpdate(): void
public static function postPackageUpdateAndInstall(): void
{
$console = new ConsoleOutput();
$console->outputLine('');
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
},
"extra": {
"neos/flow": {
"post-update": "Carbon\\Pipeline\\Composer::postPackageUpdate"
"post-update": "Carbon\\Pipeline\\Composer::postPackageUpdateAndInstall",
"post-install": "Carbon\\Pipeline\\Composer::postPackageUpdateAndInstall"
}
}
}

0 comments on commit 6101cf4

Please sign in to comment.