diff --git a/composer_installer.php b/composer_installer.php index 6a74ed3f53..69883f52a5 100644 --- a/composer_installer.php +++ b/composer_installer.php @@ -73,7 +73,7 @@ function command($phpPath) $command = "cd " . ROOT_DIR . "; export HOME={$composerDir} ; {$phpPath} {$composerDir}composer.phar self-update"; exec($command, $out, $code); if ($code !== 0) throw new Exception('composer のアップデートに失敗しました。'); - $command = "cd " . ROOT_DIR . "; export HOME={$composerDir} ; {$phpPath} {$composerDir}composer.phar install"; + $command = "cd " . ROOT_DIR . "; export HOME={$composerDir} ; yes | {$phpPath} {$composerDir}composer.phar install"; exec($command, $out, $code); if ($code !== 0) throw new Exception('ライブラリのインストールに失敗しました。
コマンド実行をお試しください
' . $command); if (!copy(ROOT_DIR . 'config' . DS . '.env.example', ROOT_DIR . 'config' . DS . '.env')) {