From e5f0e78c674dafc6b4306723ef61b8c6bf687a9b Mon Sep 17 00:00:00 2001 From: David Murphy Date: Wed, 6 Nov 2024 18:28:46 -0700 Subject: [PATCH] Attempting to get string latest for MacOS --- bootstrap-salt.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 735079f..921b23d 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -7241,7 +7241,9 @@ __macosx_get_packagesite_onedir_latest() { rm -fR ${macos_versions_tmpdir} echodebug "latest MacOS release from repository found ${LATEST_VERSION}" - return "${LATEST_VERSION}" + # shellcheck disable=SC2116 + LATEST_VERSION_RET=$(echo "${LATEST_VERSION_RET}") + return "${LATEST_VERSION_RET}" }