Skip to content

Commit

Permalink
Fixing Ubuntu release script.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorka committed May 30, 2018
1 parent 0df84f4 commit 0739ab4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/ubuntu/ubuntu-launchpad-releases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -198,17 +198,17 @@ function releaseForParticularUbuntuVersion() {
# ############################################################################

export ARG_BAZAAR_MSG="Experimental packaging."
export ARG_MAJOR_VERSION=0.7.
export ARG_MINOR_VERSION=8 # minor version is icremented for every Ubuntu version
export ARG_MAJOR_VERSION=1.42.
export ARG_MINOR_VERSION=1 # minor version is icremented for every Ubuntu version

# https://wiki.ubuntu.com/Releases
# old: precise quantal saucy precise utopic vivid wily yakkety
# current: trusty xenial artful bionic
for UBUNTU_VERSION in xenial
for UBUNTU_VERSION in trusty xenial artful bionic
do
echo "Releasing MF for Ubuntu version: ${UBUNTU_VERSION}"
releaseForParticularUbuntuVersion ${UBUNTU_VERSION} ${ARG_MAJOR_VERSION}${ARG_MINOR_VERSION} "${ARG_BAZAAR_MSG}"
MINOR=`expr $MINOR + 1`
ARG_MINOR_VERSION=`expr $ARG_MINOR_VERSION + 1`
done

# eof

0 comments on commit 0739ab4

Please sign in to comment.