From 49f316e4d6f1e8cf8a5166ed9ef70abf262edadb Mon Sep 17 00:00:00 2001 From: zhengwei6082 Date: Tue, 29 Aug 2017 09:25:18 +0800 Subject: [PATCH] Fix to use . to source script files Adhering to coding conventions. Refer to ``Code conventions`` at https://docs.openstack.org/contributor-guide/ for details. Change-Id: Idb5916cd2ced8b3b20455b903b6056ea3034b191 --- 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 7303990..99c1d35 100755 --- a/tools/with_venv.sh +++ b/tools/with_venv.sh @@ -4,4 +4,4 @@ VENV_PATH=${VENV_PATH:-${TOOLS_PATH}} VENV_DIR=${VENV_NAME:-/../.venv} TOOLS=${TOOLS_PATH} VENV=${VENV:-${VENV_PATH}/${VENV_DIR}} -source ${VENV}/bin/activate && "$@" +. ${VENV}/bin/activate && "$@"