summaryrefslogtreecommitdiff
path: root/keymanager/pkg
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-12-09 16:42:08 -0400
committerKali Kaneko <kali@leap.se>2013-12-09 16:42:08 -0400
commit6a1e885b19a59c52240cf599a6db7a1748fb3956 (patch)
tree914a78d58649436fb3e2be7943bca42d9461397b /keymanager/pkg
parentd7b4feaf4fa6161cd56a8898fe519ddb0635eb72 (diff)
add with_venwrapper script
Diffstat (limited to 'keymanager/pkg')
-rwxr-xr-xkeymanager/pkg/with_venvwrapper.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/keymanager/pkg/with_venvwrapper.sh b/keymanager/pkg/with_venvwrapper.sh
new file mode 100755
index 0000000..2622978
--- /dev/null
+++ b/keymanager/pkg/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