From 7809499daba573b4c3b783a0c603595cf7d03c85 Mon Sep 17 00:00:00 2001 From: ZhiQiang Fan Date: Mon, 9 Sep 2013 14:36:33 +0800 Subject: [PATCH] Enclose command args in with_venv.sh It will support argument with blanks. Change-Id: Ic3a00bdafc11459e9726eb99c7bc637d385e859a Closes-Bug: #1220937 --- tools/with_venv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/with_venv.sh b/tools/with_venv.sh index c8d2940fc..550c4774e 100755 --- a/tools/with_venv.sh +++ b/tools/with_venv.sh @@ -1,4 +1,4 @@ #!/bin/bash TOOLS=`dirname $0` VENV=$TOOLS/../.venv -source $VENV/bin/activate && $@ +source $VENV/bin/activate && "$@"