[kde-linux/os-autoinst-distri-kdelinux] /: Provide a valid bucket browser URL
Thomas Duckworth <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit b3e61b0fec29b6d80e8aa1503a88bfee5b6625f8 by Thomas Duckworth.
Committed on 23/07/2026 at 05:35.
Pushed by tduck into branch 'master'.
Provide a valid bucket browser URL
Needs a hashtag for the path after the bucket URL.
M +2 -1 worker.sh
https://invent.kde.org/kde-linux/os-autoinst-distri-kdelinux/-/commit/b3e61b0fec29b6d80e8aa1503a88bfee5b6625f8
diff --git a/worker.sh b/worker.sh
index fd03908..f6b4b0b 100755
--- a/worker.sh
+++ b/worker.sh
@@ -131,7 +131,8 @@ fi
# Send a message to maintainers to tell them where to inspect built images that have been staged.
if [[ -z "${MOCK_MODE:-}" && -n "${IMAGE_URL:-}" ]]; then
- URL="https://qoomon.github.io/aws-s3-bucket-browser/index.html?bucket=${IMAGE_URL%/*}"
+ BUCKET_URL="${IMAGE_URL%/*}"
+ URL="https://qoomon.github.io/aws-s3-bucket-browser/index.html?bucket=${BUCKET_URL/\/ci-artifacts\//\/ci-artifacts\/#}"
banner INFO "In case of failure, you can inspect and download the .iso image and sysupdate tree at:
$URL"
fi