Maintenance: Solve SC2086

This commit is contained in:
Marcel Herrguth 2021-06-22 14:02:36 +02:00
parent 9e1ef3ddf9
commit c8f6603ef3

View File

@ -152,7 +152,7 @@ if [ "$1" = 'zammad-railsserver' ]; then
echo "starting railsserver... with WEB_CONCURRENCY=${ZAMMAD_WEB_CONCURRENCY}"
#shellcheck disable=SC2101
exec bundle exec puma -b [::]:"${ZAMMAD_RAILSSERVER_PORT}" ${PUMA_OPTS} -e "${RAILS_ENV}"
exec bundle exec puma -b [::]:"${ZAMMAD_RAILSSERVER_PORT}" "${PUMA_OPTS}" -e "${RAILS_ENV}"
fi