8 lines
162 B
Text
8 lines
162 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting repository action count worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.repositoryactioncounter 2>&1
|
||
|
|
||
|
echo 'Repository action worker exited'
|