Skip to content

Commit

Permalink
tools/refresh.sh:skip config check on debug configs
Browse files Browse the repository at this point in the history
Signed-off-by: xuxin19 <[email protected]>
  • Loading branch information
xuxin930 authored and xiaoxiang781216 committed Oct 30, 2024
1 parent 4595f93 commit 92dddcd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/refresh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,12 @@ for CONFIG in ${CONFIGS}; do
fi
fi

# skip refresh if defconfig contains `#include`
if grep -q "#include" $DEFCONFIG; then
echo "Note: skipping refresh for debug defconfig."
exit 0
fi

# Copy the .config and Make.defs to the toplevel directory

rm -f SAVEconfig
Expand Down

0 comments on commit 92dddcd

Please sign in to comment.