diff options
author | Kali Kaneko <kali@leap.se> | 2013-12-10 18:15:52 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-12-10 18:15:52 -0400 |
commit | 40a554ca4f3d0eac6095a081723cdd5a611efe71 (patch) | |
tree | 4564175acccfea997eb814664dcd969d1b9f10d9 /pkg/tools/with_venvwrapper.sh | |
parent | 9a3a53c2681bb6351a2d58d0a5ac8628b374c60b (diff) | |
parent | a7894f445b113a5279a0cffdc08c34a944b24cf1 (diff) |
Merge branch 'debian-0.3.8' into debian
Diffstat (limited to 'pkg/tools/with_venvwrapper.sh')
-rwxr-xr-x | pkg/tools/with_venvwrapper.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/tools/with_venvwrapper.sh b/pkg/tools/with_venvwrapper.sh new file mode 100755 index 00000000..693c0ac9 --- /dev/null +++ b/pkg/tools/with_venvwrapper.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +#Wraps a command in a virtualenwrapper passed as first argument. +#Example: +#with_virtualenvwrapper.sh leap-bitmask ./run_tests.sh + +wd=`pwd` +alias pyver='python -c "import $1;print $1.__path__[0]; print $1.__version__;"' + +source `which virtualenvwrapper.sh` +echo "Activating virtualenv " $1 +echo "------------------------------------" +workon $1 +cd $wd +echo "running version: " `pyver leap.bitmask` +$2 $3 $4 $5 |