From 60b0eb76a51e0e3f85fcf7cc447dc61c40a2f513 Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Fri, 22 May 2026 17:06:57 +0100 Subject: [PATCH] fix(rust): add support for `nightly` channel As per https://github.com/renovatebot/renovate/discussions/43489. Co-authored-by: gpt-4.1 --- src/usr/local/containerbase/tools/v2/rust.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usr/local/containerbase/tools/v2/rust.sh b/src/usr/local/containerbase/tools/v2/rust.sh index 7af2d62c98..7c7718bdb0 100644 --- a/src/usr/local/containerbase/tools/v2/rust.sh +++ b/src/usr/local/containerbase/tools/v2/rust.sh @@ -24,7 +24,7 @@ function init_tool () { } function check_tool_requirements () { - if [[ "${TOOL_VERSION}" == "nightly" || "${TOOL_VERSION}" == "beta" ]]; then + if [[ "${TOOL_VERSION}" == "beta" || "${TOOL_VERSION}" == "nightly" || "${TOOL_VERSION}" == nightly-* ]]; then # allow beta and nightly versions return fi