9 lines
212 B
Bash
Executable file
9 lines
212 B
Bash
Executable file
#! /bin/bash
|
|
|
|
echo 'Starting label backfill worker'
|
|
|
|
QUAYPATH=${QUAYPATH:-"."}
|
|
cd ${QUAYDIR:-"/"}
|
|
PYTHONPATH=$QUAYPATH venv/bin/python -m workers.labelbackfillworker 2>&1
|
|
|
|
echo 'Repository label backfill exited'
|