From c239d8aaead2b75c156e740ba429cb18b28a627f Mon Sep 17 00:00:00 2001 From: renner Date: Thu, 14 May 2026 16:01:59 +0200 Subject: [PATCH] feat: remove stable-daily in rollback-helper See: https://github.com/ublue-os/aurora/pull/2208 --- system_files/shared/usr/bin/ublue-rollback-helper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system_files/shared/usr/bin/ublue-rollback-helper b/system_files/shared/usr/bin/ublue-rollback-helper index 229e5e1..c23d869 100755 --- a/system_files/shared/usr/bin/ublue-rollback-helper +++ b/system_files/shared/usr/bin/ublue-rollback-helper @@ -24,8 +24,8 @@ IMAGE_NAME="$(gum choose --header="Select your image:" "${IMAGES[@]}" cancel)" base_image="${IMAGE_REGISTRY}/${IMAGE_NAME}" declare -a CHANNELS -CHANNELS=(stable stable-daily latest) - echo "The default selection is stable (weekly builds). stable-daily (daily builds) are for enthusiasts, and latest is for testers" +CHANNELS=(stable latest) + echo "The default selection is stable (weekly builds) and latest is for enthusiasts and testers." channel_choice="$(gum choose "${CHANNELS[@]}" cancel)" [[ "$channel_choice" == "cancel" || "$channel_choice" == "" ]] && exit 0