1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
Kaveh Vahedipour 2016-08-30 14:41:33 +02:00
commit 75d54abce6
6 changed files with 11 additions and 3 deletions

View File

@ -50,6 +50,11 @@ fi
VERSION="$1"
if echo ${VERSION} | grep -q -- '-'; then
echo "${VERSION} mustn't contain minuses! "
exit 1
fi
if git tag | grep -q "^v$VERSION$"; then
echo "$0: version $VERSION already defined"
exit 1

View File

@ -105,7 +105,7 @@ exports.plainServerVersion = function () {
devel = version.match(/(.*)((alpha|beta|devel|rc)[0-9]*)$/);
if (devel !== null) {
version = devel[1];
version = devel[1] + '0';
}
}

View File

@ -86,7 +86,7 @@ exports.plainServerVersion = function () {
devel = version.match(/(.*)((alpha|beta|devel|rc)[0-9]*)$/);
if (devel !== null) {
version = devel[1];
version = devel[1] + '0';;
}
}

View File

@ -14,5 +14,6 @@ cd ${DIR}/..
--buildDir build-deb \
--targetDir /var/tmp/ \
--jemalloc \
$@
cd ${DIR}/..

View File

@ -11,6 +11,7 @@ cd ${DIR}/..
--msvc \
--buildDir /cygdrive/c/b/y/ \
--package NSIS \
--targetDir /var/tmp/
--targetDir /var/tmp/ \
$@
cd ${DIR}/..

View File

@ -13,5 +13,6 @@ cd ${DIR}/..
--buildDir build-rpm \
--targetDir /var/tmp/ \
--jemalloc \
$@
cd ${DIR}/..