mirror of https://github.com/CIRCL/url-abuse
13 lines
149 B
Bash
13 lines
149 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
if [ ! -d virtenv ]; then
|
||
|
virtualenv virtenv
|
||
|
fi
|
||
|
|
||
|
. ./virtenv/bin/activate
|
||
|
|
||
|
pip install --upgrade -r requirements.txt
|