mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-05-17 03:53:10 +00:00
763c896b63
Signed-off-by: Xe Iaso <me@xeiaso.net>
13 lines
179 B
Bash
Executable File
13 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
python3 -m venv .env
|
|
source .env/bin/activate
|
|
pip install pyyaml
|
|
|
|
python3 -c 'import yaml'
|
|
python3 ./compare_bots.py
|