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
diff --git a/stack.sh b/stack.sh
index 0ec7a5e..6002cf9 100755
--- a/stack.sh
+++ b/stack.sh
@@ -685,7 +685,7 @@
# Pre-build some problematic wheels
if [[ ! -d ${WHEELHOUSE:-} ]]; then
- source tools/build_wheels.sh
+ source $TOP_DIR/tools/build_wheels.sh
fi