From 616a329f03af16cdad4ae0928f55d184655727db Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 2 Dec 2020 19:39:32 -0600 Subject: [PATCH] Do not sort/uniq eselect profile list THIS RESULTS IN USING THE DEVELOPER PROFILE AUGH --- gentoostrap.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/gentoostrap.sh b/gentoostrap.sh index 63f2746..03afeed 100755 --- a/gentoostrap.sh +++ b/gentoostrap.sh @@ -170,8 +170,6 @@ build-gentoo-chroot() { eselect profile list \ | grep -ie 'stable' \ | grep -ie "$profile" \ - | sort \ - | uniq \ | head -n 1 \ | grep -oP '\[\K[^\]]+' ) || error "Error finding profile: $profile" 51