mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/arangodb/arangodb into devel
This commit is contained in:
commit
75d54abce6
|
@ -50,6 +50,11 @@ fi
|
||||||
|
|
||||||
VERSION="$1"
|
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
|
if git tag | grep -q "^v$VERSION$"; then
|
||||||
echo "$0: version $VERSION already defined"
|
echo "$0: version $VERSION already defined"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -105,7 +105,7 @@ exports.plainServerVersion = function () {
|
||||||
devel = version.match(/(.*)((alpha|beta|devel|rc)[0-9]*)$/);
|
devel = version.match(/(.*)((alpha|beta|devel|rc)[0-9]*)$/);
|
||||||
|
|
||||||
if (devel !== null) {
|
if (devel !== null) {
|
||||||
version = devel[1];
|
version = devel[1] + '0';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -86,7 +86,7 @@ exports.plainServerVersion = function () {
|
||||||
devel = version.match(/(.*)((alpha|beta|devel|rc)[0-9]*)$/);
|
devel = version.match(/(.*)((alpha|beta|devel|rc)[0-9]*)$/);
|
||||||
|
|
||||||
if (devel !== null) {
|
if (devel !== null) {
|
||||||
version = devel[1];
|
version = devel[1] + '0';;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,5 +14,6 @@ cd ${DIR}/..
|
||||||
--buildDir build-deb \
|
--buildDir build-deb \
|
||||||
--targetDir /var/tmp/ \
|
--targetDir /var/tmp/ \
|
||||||
--jemalloc \
|
--jemalloc \
|
||||||
|
$@
|
||||||
|
|
||||||
cd ${DIR}/..
|
cd ${DIR}/..
|
||||||
|
|
|
@ -11,6 +11,7 @@ cd ${DIR}/..
|
||||||
--msvc \
|
--msvc \
|
||||||
--buildDir /cygdrive/c/b/y/ \
|
--buildDir /cygdrive/c/b/y/ \
|
||||||
--package NSIS \
|
--package NSIS \
|
||||||
--targetDir /var/tmp/
|
--targetDir /var/tmp/ \
|
||||||
|
$@
|
||||||
|
|
||||||
cd ${DIR}/..
|
cd ${DIR}/..
|
||||||
|
|
|
@ -13,5 +13,6 @@ cd ${DIR}/..
|
||||||
--buildDir build-rpm \
|
--buildDir build-rpm \
|
||||||
--targetDir /var/tmp/ \
|
--targetDir /var/tmp/ \
|
||||||
--jemalloc \
|
--jemalloc \
|
||||||
|
$@
|
||||||
|
|
||||||
cd ${DIR}/..
|
cd ${DIR}/..
|
||||||
|
|
Loading…
Reference in New Issue