summaryrefslogtreecommitdiff
path: root/keymanager/pkg/tools/with_venvwrapper.sh
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2016-08-29 22:53:54 -0400
committerKali Kaneko (leap communications) <kali@leap.se>2016-08-29 22:53:54 -0400
commit31bfd94c0bd8e42894ec1f855c19d9ed60d44a58 (patch)
tree9eab21840d6b9ff4d1442863c562254b83bb6786 /keymanager/pkg/tools/with_venvwrapper.sh
parent3b7a763af94cdfefd80cd1101925f3b47749fd6f (diff)
[pkg] remove rest of keymanager repo
Diffstat (limited to 'keymanager/pkg/tools/with_venvwrapper.sh')
-rwxr-xr-xkeymanager/pkg/tools/with_venvwrapper.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/keymanager/pkg/tools/with_venvwrapper.sh b/keymanager/pkg/tools/with_venvwrapper.sh
deleted file mode 100755
index 2622978..0000000
--- a/keymanager/pkg/tools/with_venvwrapper.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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