Welcome to mirror list, hosted at ThFree Co, Russian Federation.

background_jobs « bin - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3d7cc04d4facdd8553680e08dbab4ad00bcd17b (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

cd $(dirname $0)/..

if [ -n "$SIDEKIQ_WORKERS" ] ; then
  exec bin/background_jobs_sk_cluster "$@"
else
  exec bin/background_jobs_sk "$@"
fi