summaryrefslogtreecommitdiffstats
path: root/build/autoloaderchecker.sh
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-08-13 14:45:28 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-08-13 15:01:02 +0200
commit6a50c4a3444643462f165c031f5a179161b3c8f1 (patch)
treed7941bf3bb502bbef6d6d17a7575339986e94827 /build/autoloaderchecker.sh
parentfa56c13484afa1baf908b93ed5b6990c6a0e9ad6 (diff)
downloadnextcloud-server-6a50c4a3444643462f165c031f5a179161b3c8f1.tar.gz
nextcloud-server-6a50c4a3444643462f165c031f5a179161b3c8f1.zip
Add missing files for Composer v2
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'build/autoloaderchecker.sh')
-rwxr-xr-xbuild/autoloaderchecker.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/autoloaderchecker.sh b/build/autoloaderchecker.sh
index 60bc4c0c395..c0737eaeb64 100755
--- a/build/autoloaderchecker.sh
+++ b/build/autoloaderchecker.sh
@@ -25,7 +25,8 @@ for app in ${REPODIR}/apps/*; do
if [[ -d $app ]]; then
if [[ -e ${app}/composer/composer.json ]]; then
echo
- echo "Regenerating autoloader for ${app}"
+ echo "Regenerating composer files for ${app}"
+ $COMPOSER_COMMAND i --no-dev -d ${app}/composer
$COMPOSER_COMMAND dump-autoload -d ${app}/composer
fi
fi