File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 88/** @var \OCP\Defaults $theme */
99// @codeCoverageIgnoreStart
1010if (!isset ($ _ )) { //standalone page is not supported anymore - redirect to /
11- require_once '../../lib/base.php ' ;
11+ require_once '../../../ lib/base.php ' ;
1212
1313 $ urlGenerator = \OCP \Server::get (\OCP \IURLGenerator::class);
1414 header ('Location: ' . $ urlGenerator ->getAbsoluteURL ('/ ' ));
Original file line number Diff line number Diff line change 55
66if [ -d " dist" ]; then
77 missing=' '
8- for f in apps/* ; do
9- grep " directory name=\" $f \" " psalm.xml 2>&1 > /dev/null
8+ for app in apps/* ; do
9+ if git check-ignore " $app " -q ; then
10+ echo " ℹ️ Ignoring non shipped app: $app "
11+ continue
12+ fi
13+
14+ grep " directory name=\" $app \" " psalm.xml 2>&1 > /dev/null
1015 if [ $? -ne 0 ]; then
11- missing=" $missing - $f \n"
16+ missing=" $missing - $app \n"
1217 fi
1318 done
1419
You can’t perform that action at this time.
0 commit comments