From c02283b5dcd321cae6f12ccd69487a9ab5e386e4 Mon Sep 17 00:00:00 2001 From: Lluis Campos Date: Tue, 12 Nov 2019 16:07:48 +0100 Subject: [PATCH] Switch to master deb packages and update URL accordingly Now that the Debian packages are generated for the three architectures, abandon the temporary location and switch to the master ones. After the next Mender release, we can switch to the "released" packages. Changelog: None Signed-off-by: Lluis Campos --- configs/mender_convert_config | 2 +- mender-convert-modify | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/mender_convert_config b/configs/mender_convert_config index c865ded..01344bc 100644 --- a/configs/mender_convert_config +++ b/configs/mender_convert_config @@ -88,7 +88,7 @@ MENDER_PARTITION_ALIGNMENT="8388608" # Mender client version # # This is used to fetch the correct binaries -MENDER_CLIENT_VERSION="2.0.1" +MENDER_CLIENT_VERSION="master" # File storage, containing binary files, do not modify this unless you know # what you are doing. diff --git a/mender-convert-modify b/mender-convert-modify index 48b5250..8f45219 100755 --- a/mender-convert-modify +++ b/mender-convert-modify @@ -84,7 +84,7 @@ log_info "Installing Mender client and related files" deb_arch=$(probe_debian_arch_name) deb_name="mender-client_${MENDER_CLIENT_VERSION}-1_${deb_arch}.deb" -run_and_log_cmd "wget -Nq ${MENDER_STORAGE_URL}/mender-convert/deb/${deb_name} -P work/mender-deb" +run_and_log_cmd "wget -Nq ${MENDER_STORAGE_URL}/${MENDER_CLIENT_VERSION}/dist-packages/debian/${deb_arch}/${deb_name} -P work/mender-deb" cd work/mender-deb run_and_log_cmd "ar -xv ${deb_name}"