10 lines
180 B
Text
10 lines
180 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting GC worker'
|
||
|
|
||
|
QUAYPATH=${QUAYPATH:-"."}
|
||
|
cd ${QUAYDIR:-"/"}
|
||
|
PYTHONPATH=$QUAYPATH venv/bin/python -m workers.gc.gcworker 2>&1
|
||
|
|
||
|
echo 'Repository GC exited'
|