From 65157e0c13709c52b3e503e8fe4c1502202ab81d Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Wed, 6 Sep 2023 15:16:01 -0700 Subject: [PATCH] Duplicate if condition --- live-build/auto/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live-build/auto/config b/live-build/auto/config index dace27fd..2b131f02 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -1139,7 +1139,7 @@ fi # grab a list of packags to remove for a "minimal" installation from the seed # mirror for this project -if [ -n "${BASE_SEED}" ] && [ -n "${BASE_SEED}" ]; then +if [ -n "${BASE_SEED}" ]; then minimal_packages_url=${SEEDMIRROR}/${SEED}/${BASE_SEED}.minimal-remove echo -n "Checking ${minimal_packages_url} for a minimal installation list... " minimal_packages_remove=$(wget -q -O- ${minimal_packages_url} | sed -e '/\s*#.*$/d' -e '/^\s*$/d')