From 84f6012e4f0aab3a172c9c12175c5f183e2ba7d1 Mon Sep 17 00:00:00 2001 From: Ladislav Gallay Date: Mon, 2 Mar 2015 22:02:20 +0100 Subject: [PATCH] Add codeception postInstall hook --- src/Console/Installer.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Console/Installer.php b/src/Console/Installer.php index 4cd26f5e4e..1ba31fbd46 100644 --- a/src/Console/Installer.php +++ b/src/Console/Installer.php @@ -62,6 +62,10 @@ public static function postInstall(Event $event) } static::setSecuritySalt($rootDir, $io); + + if (class_exists('\Cake\Codeception\Console\Installer')) { + \Cake\Codeception\Console\Installer::customizeCodeceptionBinary($event); + } } /**