14 lines
193 B
Bash
14 lines
193 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -d venv ] ; then
|
|
virtualenv venv
|
|
fi
|
|
|
|
. venv/bin/activate
|
|
|
|
git_update.sh -b v1 -d $HTTP_DIR https://git.jean-cloud.net/adrian/mutubot.git
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|