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

32 lines
765 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."
2017-01-22 03:27:12 +08:00
export VERSION=1.22.
2017-02-03 04:44:38 +08:00
export MINOR=1
2016-10-22 17:45:09 +08:00
# precise quantal saucy precise utopic / trusty vivid wily xenial yakkety
for DISTRO in trusty xenial yakkety
do
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
MINOR=`expr $MINOR + 1`
done
# eof