From 77b0df6e9a43aedcc27e05c30a258aa868854a77 Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Fri, 13 Feb 2026 09:01:46 -0500 Subject: [PATCH] fixing doofus maneuver hosed up the beautiful new approach by making the same old mistake of combining both repo lists. argh. fixed now, i think. or hope. --- scripts/rev_control/version_control.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index c8748589..b3792753 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -234,8 +234,9 @@ function checkin_list() local list="$(uniquify $*)" # turn repo list back into an array. - repolist_combined="$(uniquify ${REPOSITORY_LIST_TO_COMMIT[*]} ${REPOSITORY_LIST_TO_PULL[*]})" - eval "repository_list=( $repolist_combined )" +#no, wtf??? repolist_combined="$(uniquify ${REPOSITORY_LIST_TO_COMMIT[*]} ${REPOSITORY_LIST_TO_PULL[*]})" +# eval "repository_list=( $repolist_combined )" + eval "repository_list=( ${REPOSITORY_LIST_TO_COMMIT[*]} )" local outer inner -- 2.43.0