mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
6 lines
191 B
Bash
6 lines
191 B
Bash
|
DIR="${0%/*}"
|
||
|
if [ -z "$VIRTUAL_ENV" ] && [ -f "$DIR/../venv.mitmproxy/bin/activate" ]; then
|
||
|
echo "Activating mitmproxy virtualenv..."
|
||
|
source "$DIR/../venv.mitmproxy/bin/activate"
|
||
|
fi
|