diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-12-09 18:23:00 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-12-09 18:23:00 -0300 |
commit | f12cbd95cb922c37cd9f7d00ca8a1c500a13a298 (patch) | |
tree | 75545eb260797c18b5a4d96f1c954ec6bbf13d80 /pkg/tools/with_venvwrapper.sh | |
parent | ae8cb2b46a13c45f82d76709fd18377c70bbf0e2 (diff) | |
parent | b6af2fae11332e7212322771ce6b56d8c827361f (diff) |
Merge remote-tracking branch 'kali/bug/pep8-cleanup' into develop
Diffstat (limited to 'pkg/tools/with_venvwrapper.sh')
-rwxr-xr-x | pkg/tools/with_venvwrapper.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/tools/with_venvwrapper.sh b/pkg/tools/with_venvwrapper.sh new file mode 100755 index 0000000..2622978 --- /dev/null +++ b/pkg/tools/with_venvwrapper.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +#Wraps a command in a virtualenwrapper passed as first argument. +#Example: +#with_virtualenvwrapper.sh leap-bitmask ./run_tests.sh + +wd=`pwd` +source `which virtualenvwrapper.sh` +echo "Activating virtualenv " $1 +echo "------------------------------------" +workon $1 +cd $wd +echo "running version: " `pyver leap.keymanager` +echo "soledad version: " `pyver leap.soledad.common` +$2 $3 $4 $5 |