Skip to content

Commit ca36b36

Browse files
committed
Added a check for a recent test crawler log to the mkrelease script.
- Legacy-Id: 7603
1 parent 2c27eb4 commit ca36b36

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bin/mkrelease

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ NEXT=$(( $CHANGE + 1 ))
164164
DEV="$(printf %d.%d.%d-dev $MAJOR $MINOR $NEXT)"
165165

166166
note "Checking that there's a recent test-crawler log"
167-
touch -d $RDATE $SRC
168-
TCLOG=$(ls -t $SRC/test-crawl-*.log | head -n 1)
169-
[ $TCLOG -nt $SRC ] || die "Looked for $SRC/test-crawl-*.log, but didn't find one newer than the latest repository commit ($RDATE)"
167+
touch -d $RDATE .svn/.latest-commit
168+
TCLOG=$(ls -t ../test-crawl-*.log | head -n 1)
169+
[ $TCLOG -nt .svn/.latest-commit ] || die "Looked for ../test-crawl-*.log, but didn't find one newer than the latest repository commit ($RDATE)"
170170

171171
note "Checking that changelog information is available"
172172
changes=$( sed -n "/^ietfdb ($VER.*)/,/^ -- /p" changelog )

0 commit comments

Comments
 (0)