hstr/dist/ubuntu-make-all-distros.sh

32 lines
790 B
Bash
Raw Normal View History

#!/bin/bash
2015-02-27 16:03:17 +08:00
# Launchpad release checklist:
# - update version in source code (hstr.c)
# - update version in configure.ac
# - update release message in this file
# - update version in this file
# - check target Ubuntu distributions in this file
# - check minor version in this file
# - run this script from ~/p/hstr/launchpad
if [ -e "../.git" ]
then
echo "This script MUST NOT be run from Git repository - run it e.g. from ~/p/hstr/launchpad instead"
exit 1
fi
export HHBZRMSG="Top and bottom prompt."
2018-05-07 01:31:41 +08:00
export VERSION=1.25.
export MINOR=1
2018-04-27 22:57:39 +08:00
# precise quantal saucy precise utopic vivid wily yakkety zesty / trusty xenial artful bionic
2018-05-07 01:31:41 +08:00
for DISTRO in trusty xenial artful bionic
do
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
MINOR=`expr $MINOR + 1`
done
# eof