comparison version.sh @ 663:3c40f672174c

Remove no longer needed MCL version numbers.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 19 Oct 2022 18:52:41 +0200 (2022-10-19)
parents 3136c91b88e6
children aeb268156580
comparison
equal deleted inserted replaced
662:ee1f3b3ff5fd 663:3c40f672174c
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 # 6 #
7 # Copyright 1997 - July 2008 CWI, August 2008 - 2022 MonetDB B.V. 7 # Copyright 1997 - July 2008 CWI, August 2008 - 2022 MonetDB B.V.
8 8
9 if [[ -z $1 ]] ; then 9 if [[ -z $1 ]] ; then
10 echo "Usage: $0 [-w] <(jdbc|mcl)> <(major|minor|suffix)=newversion> [...]" 10 echo "Usage: $0 [-w] jdbc <(major|minor|suffix)=newversion> [...]"
11 echo "where -w activates actual write of changes" 11 echo "where -w activates actual write of changes"
12 exit -1 12 exit -1
13 fi 13 fi
14 14
15 PROPERTIES='build.properties' 15 PROPERTIES='build.properties'
34 esac 34 esac
35 case $1 in 35 case $1 in
36 jdbc) 36 jdbc)
37 TYPE=JDBC 37 TYPE=JDBC
38 FILES="monetdb-jdbc-XXX.jar" 38 FILES="monetdb-jdbc-XXX.jar"
39 ;;
40 mcl)
41 TYPE=MCL
42 FILES="monetdb-mcl-XXX.jar"
43 ;; 39 ;;
44 *) 40 *)
45 echo "invalid type: $1" 41 echo "invalid type: $1"
46 exit -1 42 exit -1
47 ;; 43 ;;