remove stderr redirect for debugging
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-10-03 00:49:40 +02:00
parent 4b45ce02ba
commit 95ea52259b
1 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@
/usr/local/bin/gomplate -V -o /var/www/app/data/config.php -f /etc/templates/config.php.tmpl
/usr/local/bin/gomplate -V -o /var/www/app/constants.local.php -f /etc/templates/constants.local.php.tmpl
/usr/bin/php -f ./cli/prepare.php >/dev/null 2>&1
/usr/bin/php -f ./cli/prepare.php
if [ "${FRESHRSS_DEFAULT_USER}" ]; then
/usr/bin/php ./cli/create-user.php --user "$FRESHRSS_DEFAULT_USER" --password "$FRESHRSS_DEFAULT_PASSWORD" >/dev/null 2>&1
/usr/bin/php ./cli/do-install.php --default_user "$FRESHRSS_DEFAULT_USER" >/dev/null 2>&1
/usr/bin/php ./cli/create-user.php --user "$FRESHRSS_DEFAULT_USER" --password "$FRESHRSS_DEFAULT_PASSWORD"
/usr/bin/php ./cli/do-install.php --default_user "$FRESHRSS_DEFAULT_USER"
fi
exec supercronic -split-logs /etc/crontabs/nginx 1> /dev/null &