5 lines
84 B
Bash
5 lines
84 B
Bash
|
#!/bin/bash
|
||
|
TOOLS=`dirname $0`
|
||
|
VENV=$TOOLS/../.venv
|
||
|
source $VENV/bin/activate && $@
|