From aa8d31ac8b6a69b40569f7d906b8217ac6612c2d Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 20 Feb 2015 06:10:48 -0500 Subject: [PATCH] fix missing TOP_DIR which can break sourcing There were a couple of places where TOP_DIR is missing when we do a source of content in tools. Given that working directory can change quite often during devstack, we need to always be explicit here. Change-Id: I14b5699637d7f5db745bccf116f440cdcbaa8d91 --- lib/stack | 2 +- stack.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/stack b/lib/stack index 6ca6c0baf2..9a509d8318 100644 --- a/lib/stack +++ b/lib/stack @@ -18,7 +18,7 @@ function stack_install_service { if type install_${service} >/dev/null 2>&1; then if [[ -n ${PROJECT_VENV[$service]:-} ]]; then rm -rf ${PROJECT_VENV[$service]} - source tools/build_venv.sh ${PROJECT_VENV[$service]} + source $TOP_DIR/tools/build_venv.sh ${PROJECT_VENV[$service]} export PIP_VIRTUAL_ENV=${PROJECT_VENV[$service]:-} fi install_${service} diff --git a/stack.sh b/stack.sh index 0ec7a5e5e5..6002cf9d17 100755 --- a/stack.sh +++ b/stack.sh @@ -685,7 +685,7 @@ fi # Pre-build some problematic wheels if [[ ! -d ${WHEELHOUSE:-} ]]; then - source tools/build_wheels.sh + source $TOP_DIR/tools/build_wheels.sh fi