#!/usr/bin/env bash # Copyright (C) 2023 The Qt Company Ltd. # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only set -e PROVISIONING_DIR="$(dirname "$0")/../../" # shellcheck source=../unix/common.sourced.sh source "$PROVISIONING_DIR"/common/unix/common.sourced.sh # shellcheck source=../unix/DownloadURL.sh source "$PROVISIONING_DIR"/common/unix/DownloadURL.sh localRepo=http://ci-files01-hki.ci.qt.io/input/docker upstreamRepo=https://download.docker.com/linux/ubuntu/dists/focal/pool/stable/amd64/ function getEachUpstream () { while read -r sha f do DownloadURL "$localRepo/$f" "$upstreamRepo/$f" "$sha" done } cat <