diff options
author | YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp> | 2013-01-30 14:24:23 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-01-30 17:24:25 +0900 |
commit | 49bf5c99918cea9cb948a03c9c0e569ab71b0085 (patch) | |
tree | b1857132f4110092d56dfe38d1f82b33e72b08e0 /tools/with_venv.sh | |
parent | 6a5738c92a6f168252fc4cc7550b814b3d7a3600 (diff) |
test: remove some unnecessary bash dependencies
/bin/bash is not so ubiquitous.
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'tools/with_venv.sh')
-rwxr-xr-x | tools/with_venv.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/with_venv.sh b/tools/with_venv.sh index 93eaa889..311ab619 100755 --- a/tools/with_venv.sh +++ b/tools/with_venv.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2011 OpenStack LLC. @@ -18,4 +18,4 @@ TOOLS=`dirname $0` VENV=$TOOLS/../.venv -source $VENV/bin/activate && $@ +. $VENV/bin/activate && $@ |