File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -32,22 +32,15 @@ VERSION="$(cat README* | head -n 10 | grep ' version ' | sed 's/.*version //')"
32
32
CHLOG=" $( grep ^Version ChangeLog | head -n 1) "
33
33
34
34
# Check for non-release version
35
- if [ " ${VERSION% DEV} " != " ${VERSION} " ] || \
36
- [ " ${VERSION% SVN} " != " ${VERSION} " ]; then
37
- echo " WARNING: version string contains 'DEV' or 'SVN', should probably be changed!"
35
+ if [ " ${VERSION% DEV} " != " ${VERSION} " ]; then
36
+ echo " WARNING: version string contains 'DEV', should probably be changed!"
38
37
fi
39
38
40
39
CHLOG_VERSION=" $( echo $CHLOG | sed -r ' s/^Version ([0-9\.]+) .*$/\1/' ) "
41
40
if [ " $VERSION " != " $CHLOG_VERSION " ]; then
42
41
echo " WARNING: version strings in README* and ChangeLog differ: '$VERSION ' != '$CHLOG_VERSION '"
43
42
fi
44
43
45
- # Check for renamed SQL upgrade file
46
- if ls sql/upgrade/upgrade_* DEV.sql > /dev/null 2>&1 || \
47
- sql/upgrade/upgrade_* SVN.sql > /dev/null 2>&1 ; then
48
- echo " WARNING: found SQL upgrade file to DEV/SVN version, should probably be renamed!"
49
- fi
50
-
51
44
# Add released tag for revision information:
52
45
sed -i ' s/PUBLISHED =.*/PUBLISHED = release/' paths.mk.in
53
46
You can’t perform that action at this time.
0 commit comments