29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-08-05 02:30:28 +00:00

Revert changes I accidentally committed when resetting the j4 build

This commit is contained in:
wilsonge 2019-06-29 23:13:26 +01:00
parent 16c176f749
commit 2a5d7c1b10
No known key found for this signature in database
GPG Key ID: EF81319318FC9D04

View File

@ -196,7 +196,7 @@ system($systemGit . ' archive ' . $remote . ' | tar -x -C ' . $fullpath);
// Install PHP and NPM dependencies and compile required media assets, skip Composer autoloader until post-cleanup
chdir($fullpath);
system('php /usr/local/bin/composer.phar install --no-dev --no-autoloader --ignore-platform-reqs', $composerReturnCode);
system('composer install --no-dev --no-autoloader --ignore-platform-reqs', $composerReturnCode);
if ($composerReturnCode !== 0)
{
@ -225,7 +225,7 @@ if ($gzipReturnCode !== 0)
clean_checkout($fullpath);
// Regenerate the Composer autoloader without deleted files
system('php /usr/local/bin/composer.phar dump-autoload --no-dev --optimize --no-scripts');
system('composer dump-autoload --no-dev --optimize --no-scripts');
// Clean the Composer manifests now
clean_composer($fullpath);