summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZhenguo Niu <Niu.ZGlinux@gmail.com>2013-09-09 14:58:02 +0800
committerZhenguo Niu <Niu.ZGlinux@gmail.com>2013-09-09 15:02:40 +0800
commitd4b324573fee1d6d11e9e10963227d597f57d107 (patch)
tree294534f0a602f3998fa2fba6441258be068231de /tools
parent1a8c62acb9414bbd8efd1ac0de084f63633e99cd (diff)
downloadtrove-d4b324573fee1d6d11e9e10963227d597f57d107.tar.gz
Enclose command args in with_venv.sh
It will support argument with blanks. Change-Id: I83313290a964bf10fe46570f43cf213ceab8a326 Fixes: bug #1220937
Diffstat (limited to 'tools')
-rwxr-xr-xtools/with_venv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/with_venv.sh b/tools/with_venv.sh
index 633806f4..5143b556 100755
--- a/tools/with_venv.sh
+++ b/tools/with_venv.sh
@@ -27,4 +27,4 @@ while getopts ":hE:" opt; do
done
shift $((OPTIND-1))
-source "${venv}/bin/activate" && $@
+source "${venv}/bin/activate" && "$@"