osmith submitted this change.
publish-manuals-for-tags: fix build deps install
Use the absolute path when checking for debian/control in
build_publish_manuals(), as we aren't in the /build directory at that
point.
Fixes: 072b1eae88 ("manuals: publish pyosmocom manuals for releases")
Change-Id: I8749107b974a4a8d57da868829a8f548404f3fa3
---
M scripts/manuals/publish-manuals-for-tags.sh
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/manuals/publish-manuals-for-tags.sh b/scripts/manuals/publish-manuals-for-tags.sh
index 50b7a3b..610457a 100755
--- a/scripts/manuals/publish-manuals-for-tags.sh
+++ b/scripts/manuals/publish-manuals-for-tags.sh
@@ -368,7 +368,7 @@
# Install dependencies
case $repo in
*)
- if [ -e debian/control ]; then
+ if [ -e /build/debian/control ]; then
apt-get -y build-dep /build
fi
;;
To view, visit change 38368. To unsubscribe, or for help writing mail filters, visit settings.