8 lines
115 B
Text
8 lines
115 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting GC worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.gcworker 2>&1
|
||
|
|
||
|
echo 'Repository GC exited'
|