fix: disable clamscan (to avoid a load of packages)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
c6c36e877d
commit
4ee48f323e
1 changed files with 2 additions and 2 deletions
|
@ -18,9 +18,9 @@ cd "$WORKDIR" || exit 1
|
|||
echo "GX:BEFORE-STARTING:START ($(pwd))"
|
||||
# find . -maxdepth 1
|
||||
echo "GX:BEFORE-STARTING:STATUS"
|
||||
php -d memory_limit=-1 occ status |jq -r '.installed'
|
||||
php -d memory_limit=-1 occ status
|
||||
# INSTALLED="$(php -d memory_limit=-1 occ status |jq -r '.installed')"
|
||||
if php -d memory_limit=-1 occ status 2>&1 | grep 'not installed' ; then
|
||||
if php -d memory_limit=-1 occ status 2>&1 | grep -q 'not installed' ; then
|
||||
echo "WARNING: Nextcloud is not installed yet. Exiting."
|
||||
exit 0
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue