diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-12-17 14:57:59 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-12-17 14:57:59 -0300 |
commit | 3d7d74fa5759b168eb57e4259ad56bcb71f9a4a0 (patch) | |
tree | 3ddbec84c37df60b0689f1053a7ec93a4421ecd2 /pkg | |
parent | 77e4e1d037a8eb796553b3f28f31e4f4d1ccee84 (diff) | |
parent | 27c25df5533f9312c93fa79af2d7a442b389b9b8 (diff) |
Merge remote-tracking branch 'refs/remotes/kali/feature/memoize-calls' into develop
Diffstat (limited to 'pkg')
-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 |