deploy: fix deploy script
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Glenn Y. Rolland 2023-02-26 00:54:24 +01:00
parent 8fa702a475
commit 26e64974c3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
"scripts": {
"dokku": {
"postdeploy": "sh -c 'echo GYR:POSTDEPLOY:START && pwd && find . && occ upgrade && occ db:convert-filecache-bigint && occ db:add-missing-indices && echo GYR:POSTDEPLOY:END'"
"postdeploy": "sh -c 'echo GYR:POSTDEPLOY:START && pwd && find . -maxdepth 1 && php -d memory_limit=-1 occ upgrade && php -d memory_limit=-1 occ db:convert-filecache-bigint && php -d memory_limit=-1 occ db:add-missing-indices && echo GYR:POSTDEPLOY:END'"
}
}
}