We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2f9be commit 6af60ebCopy full SHA for 6af60eb
lib.sh
@@ -1503,7 +1503,7 @@ any_key() {
1503
1504
lowest_compatible_nc() {
1505
# .ocdata needs to exist to be able to check version, occ relies on everytihgn working
1506
-until [ -f "$NCDATA"/.ocdata ]
+until [ -f "$NCDATA"/.ocdata ] || [ -f "$NCDATA"/.ncdata ]
1507
do
1508
# SUPPORT LEGACY: If it's not in the standard path, check for existing datadir in config.php
1509
if [ -f "$NCPATH"/config/config.php ]
@@ -1516,7 +1516,7 @@ do
1516
If you think this is a bug, please report it to $ISSUES"
1517
else
1518
# Check again an break if found
1519
- if [ -f "$NCDATA"/.ocdata ]
+ if [ -f "$NCDATA"/.ocdata ] || [ -f "$NCDATA"/.ncdata ]
1520
then
1521
break
1522
fi
0 commit comments