From f3801710f6d3573484614986f204778d53ade011 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Arkadiusz=20Mi=C5=9Bkiewicz?= Date: Thu, 8 Mar 2012 21:03:42 +0000 Subject: [PATCH] Check for name/CVS dir when looking for sticky name. Old test failed if under name we had subdir with the same name. Changed files: builder.sh -> 1.673 --- builder.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder.sh b/builder.sh index 00be8fa..6600290 100644 --- a/builder.sh +++ b/builder.sh @@ -2463,7 +2463,7 @@ while [ $# -gt 0 ]; do esac done -[ -d "$ASSUMED_NAME" ] && CVS_ENTRIES="$ASSUMED_NAME/CVS/Entries" || CVS_ENTRIES="CVS/Entries" +[ -d "$ASSUMED_NAME/CVS" ] && CVS_ENTRIES="$ASSUMED_NAME/CVS/Entries" || CVS_ENTRIES="CVS/Entries" if [ -f "$CVS_ENTRIES" ] && [ -z "$CVSTAG" ]; then CVSTAG=$(awk -vSPECFILE=$(basename $SPECFILE) -F/ '$2 == SPECFILE && $6 ~ /^T/{print substr($6, 2)}' ${CVS_ENTRIES}) if [ "$CVSTAG" ]; then -- 2.43.0