7 lines
239 B
Bash
Executable File
7 lines
239 B
Bash
Executable File
#! /bin/bash
|
|
# Version of the scheduler utility that can be called from a crontab.
|
|
# Place this in the root of your installation to run scheduled events.
|
|
|
|
source /path/to/your/virtualenv/bin/activate
|
|
python3 -m bemani.utils.scheduler "$@"
|