Browse Source

fix: Broken version check

Changelog: None
Ticket: MEN-6301

Signed-off-by: Lluis Campos <lluis.campos@northern.tech>
4.0.x
Lluis Campos 2 years ago
parent
commit
f16d5f21b4
  1. 2
      mender-convert-package

2
mender-convert-package

@ -207,7 +207,7 @@ run_and_log_cmd "mv --force work/rootfs/data work/data"
if [[ "${MENDER_CLIENT_INSTALL}" == y ]]; then
# If the client version is less than 3.4, then log a warning
if ! miminum_required_version "3.4.0" "${MENDER_CLIENT_VERSION}"; then
if ! minimum_required_version "3.4.0" "${MENDER_CLIENT_VERSION}"; then
log_warn "You are now installing a Mender client which does not support the " \
"bootstrap Artifact present in the image. This means that updates will not " \
"work, and your image is impossible to update"

Loading…
Cancel
Save