From 830dea2edcb19593849227de046c45d4cd62bd2b Mon Sep 17 00:00:00 2001 From: "chess.griffin" Date: Mon, 11 Aug 2008 21:22:48 +0000 Subject: [PATCH] fix a stupid bug on my part that would cause the search to break --- src/usr/bin/sbopkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usr/bin/sbopkg b/src/usr/bin/sbopkg index 3661fdb..f68ce5d 100755 --- a/src/usr/bin/sbopkg +++ b/src/usr/bin/sbopkg @@ -597,8 +597,8 @@ if [ -n "$RESULTS" ]; then SRCHPICK="$(cat $TMP/sbopkg_search_choice)" SRCHCAT=$(echo $SRCHPICK | sed -e 's/\/.*$//') SRCHPKG=$(echo $SRCHPICK | sed -e 's/^.*\///') - echo $SRCHCAT >> $TMP/sbopkg_category_selection - echo $SRCHPKG >> $TMP/sbopkg_item_selection + echo $SRCHCAT > $TMP/sbopkg_category_selection + echo $SRCHPKG > $TMP/sbopkg_item_selection cd $LOCALREPO/$SLACKVER info_item fi