Force composer to always discard any local changes to packages - this gets around a checksumming issue in the AWS SDK upgrade.
This commit is contained in:
parent
728d14563e
commit
d9b68716c8
@ -55,6 +55,7 @@
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"preferred-install": "dist"
|
||||
"preferred-install": "dist",
|
||||
"discard-changes": true
|
||||
}
|
||||
}
|
||||
|
@ -237,7 +237,7 @@ php artisan view:clear
|
||||
private function runComposer()
|
||||
{
|
||||
ob_start();
|
||||
system('php composer.phar install', $rc);
|
||||
system('php composer.phar --no-interaction install', $rc);
|
||||
$result = ob_get_clean();
|
||||
echo nl2br($result);
|
||||
if ($rc != 0)
|
||||
|
Loading…
Reference in New Issue
Block a user