ci-automation/image-changes: Source version.txt

This avoid messing with quotes.
This commit is contained in:
Krzesimir Nowak 2023-10-12 17:11:33 +02:00
parent 5b3e90eceb
commit ead79f989c

View File

@ -488,21 +488,21 @@ function get_channel_a_and_version_a() {
# -- # --
# Gets the latest release for given channel and board. For lts channel # Gets the latest release for given channel and board. For lts channel
# gets a version of the latest LTS. # gets a version of the latest LTS. Runs in a subshell.
function channel_version() { function channel_version() (
local channel=${1}; shift local channel=${1}; shift
local board=${1}; shift local board=${1}; shift
curl \ source <(curl \
-fsSL \ -fsSL \
--retry-delay 1 \ --retry-delay 1 \
--retry 60 \ --retry 60 \
--retry-connrefused \ --retry-connrefused \
--retry-max-time 60 \ --retry-max-time 60 \
--connect-timeout 20 \ --connect-timeout 20 \
"https://${channel}.release.flatcar-linux.net/${board}/current/version.txt" | \ "https://${channel}.release.flatcar-linux.net/${board}/current/version.txt")
grep -m 1 'FLATCAR_VERSION=' | cut -d = -f 2- echo "${FLATCAR_VERSION}"
} )
# -- # --
# Prints some reports using scripts from the passed path to # Prints some reports using scripts from the passed path to