We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c27eb4 commit ca36b36Copy full SHA for ca36b36
1 file changed
bin/mkrelease
@@ -164,9 +164,9 @@ NEXT=$(( $CHANGE + 1 ))
164
DEV="$(printf %d.%d.%d-dev $MAJOR $MINOR $NEXT)"
165
166
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)"
+touch -d $RDATE .svn/.latest-commit
+TCLOG=$(ls -t ../test-crawl-*.log | head -n 1)
+[ $TCLOG -nt .svn/.latest-commit ] || die "Looked for ../test-crawl-*.log, but didn't find one newer than the latest repository commit ($RDATE)"
170
171
note "Checking that changelog information is available"
172
changes=$( sed -n "/^ietfdb ($VER.*)/,/^ -- /p" changelog )
0 commit comments