diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2023-03-17 15:03:33 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2023-03-17 15:03:33 +0100 |
commit | 4f9aa2f54a7a4a62f7088e226232e113fe322b8b (patch) | |
tree | ec83c3c494f3b39bf0730456453bad7bfdd90d06 /backport | |
parent | 31f7c71c6247dccef89d3a5063fad1e55bfb0fc8 (diff) |
Changes for 4.2.3, start bookworm
Diffstat (limited to 'backport')
-rwxr-xr-x | backport | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ rcrandir=/home/jranke/git/uni-bremen/website/www/ranke/r-cran usage() { -echo "Usage: ./backport [options] sourcepackage stretch|buster|bullseye" +echo "Usage: ./backport [options] sourcepackage buster|bullseye|bookworm" echo "Options:" echo " -k, --keep Keep copied source package and directory used for package building" echo " -s, --skip Skip apt-get update/upgrade and pbuilder update" @@ -58,7 +58,7 @@ pkg=$1 DIST=$2 # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi +if [ $DIST != "bookworm" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi export DIST # Remove previously extracted sources |