Skip to content

Commit

Permalink
Merge pull request #37476 from nextcloud/ci/checkers/fix-autoloader-g…
Browse files Browse the repository at this point in the history
…eneration-extraneous-apps

ci(checkers): Fix autoloader (re)generation for extraneous apps
  • Loading branch information
blizzz authored Apr 14, 2023
2 parents 0951398 + b2c9a57 commit a578a5e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build/autoloaderchecker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ echo "Regenerating main autoloader"
$COMPOSER_COMMAND dump-autoload -d $REPODIR

for app in ${REPODIR}/apps/*; do
if git check-ignore ${app} -q ; then
echo
echo "${app} is not shipped. Ignoring autoloader regeneration"
continue
fi
if [[ -d $app ]]; then
if [[ -e ${app}/composer/composer.json ]]; then
echo
Expand Down

0 comments on commit a578a5e

Please sign in to comment.