diff --git a/install.php b/install.php index 0c2cb9c6..96a611ae 100644 --- a/install.php +++ b/install.php @@ -25,12 +25,12 @@ if(!file_exists('./composer.phar')) { print 'INSTALLING: Composer' . PHP_EOL; file_put_contents('./composerinstaller.php', file_get_contents('https://getcomposer.org/installer')); - shell_exec('php ./composerinstaller.php'); + shell_exec('php composerinstaller.php'); unlink('./composerinstaller.php'); } print 'RUNNING: Composer' . PHP_EOL; -shell_exec('./composer.phar install'); +shell_exec('php composer.phar install'); require_once('bootstrap.php');