mirror of
https://gitlab.com/vylion/velascobot.git
synced 2025-04-19 13:36:36 +02:00
4 lines
245 B
Bash
Executable file
4 lines
245 B
Bash
Executable file
#!/bin/bash
|
|
[ -f .token] && . .token || echo "Configure token in .token as 'export TOKEN=...'" && exit 1
|
|
[ -f .uid ] && . .uid || echo "Configure UID in .uid as 'export UID=...'" && exit 1
|
|
python velasco.py ${TOKEN} ${UID} | tee -a velasco.log
|