osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/38368?usp=email )
Change subject: publish-manuals-for-tags: fix build deps install ......................................................................
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(-)
Approvals: pespin: Looks good to me, but someone else must approve fixeria: Looks good to me, approved Jenkins Builder: Verified
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 ;;