hstr/dist/ubuntu-make-all-distros.sh
2018-05-06 19:32:32 +02:00

31 lines
790 B
Bash
Executable file

#!/bin/bash
# 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."
export VERSION=1.25.
export MINOR=1
# precise quantal saucy precise utopic vivid wily yakkety zesty / trusty xenial artful bionic
for DISTRO in trusty xenial artful bionic
do
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
MINOR=`expr $MINOR + 1`
done
# eof