Skip to content

Commit

Permalink
Fixed issue #1708
Browse files Browse the repository at this point in the history
Signed-off-by: Aakash788 <[email protected]>
  • Loading branch information
Aakash788 committed Jul 5, 2024
1 parent bf4ee69 commit e2cd6bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
echo "Starting nextcloud installation"
max_retries=10
try=0
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
do
echo "Retrying install..."
try=$((try+1))
Expand Down

0 comments on commit e2cd6bd

Please sign in to comment.