fix: better detect not-installed status
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Glenn Y. Rolland 2024-08-13 17:19:42 +02:00
parent 86386eb959
commit daccaad28c

View file

@ -18,11 +18,10 @@ cd "$WORKDIR" || exit 1
echo "GX:BEFORE-STARTING:START ($(pwd))" echo "GX:BEFORE-STARTING:START ($(pwd))"
# find . -maxdepth 1 # find . -maxdepth 1
echo "GX:BEFORE-STARTING:STATUS" echo "GX:BEFORE-STARTING:STATUS"
php -d memory_limit=-1 occ status |jq -r '.installed' php -d memory_limit=-1 occ status |jq -r '.installed'
INSTALLED="$(php -d memory_limit=-1 occ status |jq -r '.installed')" # INSTALLED="$(php -d memory_limit=-1 occ status |jq -r '.installed')"
if [ "$INSTALLED" != "true" ]; then if php -d memory_limit=-1 occ status 2>&1 | grep 'not installed' ; then
echo "WARNING: Not installed yet. Exiting." echo "WARNING: Nextcloud is not installed yet. Exiting."
exit 0 exit 0
fi fi