We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3436cf3 commit 2663f79Copy full SHA for 2663f79
1 file changed
scripts/build-deb.sh
@@ -102,11 +102,13 @@ export GPDB_FULL_VERSION=$VERSION
102
# Set version if not provided
103
if [ -z "${VERSION}" ]; then
104
export GPDB_FULL_VERSION=$(./getversion | cut -d'-' -f 1 | cut -d'+' -f 1)
105
-fi
106
107
-if [[ ! $GPDB_FULL_VERSION =~ ^[0-9] ]]; then
108
- export GPDB_FULL_VERSION="0.$GPDB_FULL_VERSION"
109
+ export GPDB_FULL_VERSION=${GPDB_FULL_VERSION//_/-}
+
+ if [[ ! $GPDB_FULL_VERSION =~ ^[0-9] ]]; then
+ export GPDB_FULL_VERSION="6.$GPDB_FULL_VERSION"
110
+ fi
111
+fi
112
113
if [ -z ${BUILD_NUMBER+x} ]; then
114
export BUILD_NUMBER=1
0 commit comments