From f74ce1464173bcddec1bb2e2c334a3e1911f0d67 Mon Sep 17 00:00:00 2001 From: Jiri Stransky Date: Tue, 2 Jul 2013 13:36:47 +0200 Subject: [PATCH] Shortcut script for running the CLI in virtualenv --- tools/tuskar_with_venv.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 tools/tuskar_with_venv.sh diff --git a/tools/tuskar_with_venv.sh b/tools/tuskar_with_venv.sh new file mode 100755 index 0000000..f4d0808 --- /dev/null +++ b/tools/tuskar_with_venv.sh @@ -0,0 +1,4 @@ +#!/bin/bash +TOOLS=`dirname $0` +VENV=$TOOLS/../.venv +source $VENV/bin/activate && python -m tuskarclient.shell $@