34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
exit 1
fi
# On Wednesday, do a distclean to force redownloading everything (mainly
# for CVS Head) and force a rebuild to ensure up-to-date build status
if [ "$(date '+%u')" != "3" ]; then
if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then
# Don't re-run the tests if nothing has changed
exit 0
fi
fi
# Only run one at a time
if [ -f "${MARKERFILE}" ]; then
exit 1
fi
|
>
|
|
>
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
exit 1
fi
# On Wednesday, do a distclean to force redownloading everything (mainly
# for CVS Head) and force a rebuild to ensure up-to-date build status
if [ "$(date '+%u')" != "3" ]; then
if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then
if [ "$1" != "force" ]; then
# Don't re-run the tests if nothing has changed
exit 0
fi
fi
fi
# Only run one at a time
if [ -f "${MARKERFILE}" ]; then
exit 1
fi
|