From 63ce0122cf799bfa367ab8b617188d6fd16aa491 Mon Sep 17 00:00:00 2001 From: bryan Date: Sat, 28 Jan 2023 11:17:08 -0500 Subject: [PATCH] More debug output --- openwrtbuilder | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openwrtbuilder b/openwrtbuilder index 3198131..f4559f2 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -624,10 +624,6 @@ fromSource() { pushd "$GITWORKTREEDIR" &>/dev/null || return 1 - # Update package feed - ./scripts/feeds update -a && - ./scripts/feeds install -a - # Grab the release seed config if ! curl -so "$SEED_FILE" "$SEED_URL"; then echo "Could not obtain .config seed from $SEED_FILE" @@ -660,7 +656,11 @@ fromSource() { # Write options to config seed file for opt in "${config_opts[@]}"; do echo "$opt" >> "$SEED_FILE" - done + done + + # Update package feed + ./scripts/feeds update -a && + ./scripts/feeds install -a # normalize .config and remove dupes # make defconfig # TODO