12 lines
280 B
Bash
12 lines
280 B
Bash
#!/usr/bin/bash
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
[ -d repo ] || git clone https://github.com/RELIHR/Discord-Status-Changer.git repo
|
|
[ -d venv ] || python3 -m venv venv
|
|
[ -f token ] || echo "token goes here" > token
|
|
. ./venv/bin/activate
|
|
|
|
|
|
pip install requests colorama
|