osmith has uploaded this change for review. (
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/68/38368/1
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
https://gerrit.osmocom.org/c/osmo-ci/+/38368?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I8749107b974a4a8d57da868829a8f548404f3fa3
Gerrit-Change-Number: 38368
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>