From: Luis R. Rodriguez Date: Fri, 10 Dec 2010 17:55:39 +0000 (-0800) Subject: compat-wireless: fix admin-update.sh for stable cherry picks X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=c0f962ab0242e3615ecc226d67fc005e09890e2e;p=openwrt%2Fstaging%2Fblogic.git compat-wireless: fix admin-update.sh for stable cherry picks The wrong directory (none) was being purched on the linux-next/ directory tree, so old pending-stable/ patches were being copied over. Signed-off-by: Luis R. Rodriguez --- diff --git a/scripts/admin-update.sh b/scripts/admin-update.sh index 254792846c68..4bda0ef09e24 100755 --- a/scripts/admin-update.sh +++ b/scripts/admin-update.sh @@ -440,7 +440,7 @@ if [[ "$GET_STABLE_PENDING" = y ]]; then cd $NEXT_TREE PENDING_STABLE_DIR="pending-stable/" - rm -rf $CHERRY_PICK_DIR + rm -rf $PENDING_STABLE_DIR echo -e "${GREEN}Generating stable cherry picks... ${NORMAL}" git format-patch --grep="stable@kernel.org" -o $PENDING_STABLE_DIR ${LAST_STABLE_UPDATE}.. $WSTABLE if [ ! -d ${LAST_DIR}/${PENDING_STABLE_DIR} ]; then