diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-09-18 14:39:36 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-09-18 14:39:36 +0200 |
commit | fe62d93dd07a97aded4fdfd2df2163d9cc760762 (patch) | |
tree | 8a329a36763a4b846a545c0dec106817b7f10534 /tools | |
parent | d5c285f0a6c7bb4bed02e97c17c4a18d50c3d967 (diff) | |
download | weechat-fe62d93dd07a97aded4fdfd2df2163d9cc760762.zip |
build: update version of Debian/Ubuntu distros in examples
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build-debian.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/build-debian.sh b/tools/build-debian.sh index 66cdcc797..0cf9535e9 100755 --- a/tools/build-debian.sh +++ b/tools/build-debian.sh @@ -31,7 +31,7 @@ # Script arguments: Examples: # # 1. version devel, devel-2, stable, stable-2, 1.9, 1.9-2 -# 2. distro type/name debian/sid, ubuntu/artful, raspbian/stretch +# 2. distro type/name debian/sid, ubuntu/jammy, raspbian/bullseye # # The script can also just check that all Debian/Ubuntu patches apply fine # with a single argument: "test-patches". @@ -39,9 +39,9 @@ # Examples: # # …/build-debian.sh devel debian/sid -# …/build-debian.sh stable debian/stretch -# …/build-debian.sh 1.9 ubuntu/artful -# …/build-debian.sh 1.9-2 ubuntu/zesty +# …/build-debian.sh stable debian/bullseye +# …/build-debian.sh 1.9 ubuntu/jammy +# …/build-debian.sh 1.9-2 ubuntu/focal # # …/build-debian.sh test-patches # @@ -72,7 +72,7 @@ Syntax: $0 devel|stable|<version> distro version version to build: stable, devel or specific version (debian package revision is allowed after name (default is 1), for example: devel-2, stable-2, 1.9-2) - distro the distro type/name (debian/sid, ubuntu/artful, raspbian/stretch, ...) + distro the distro type/name (debian/sid, ubuntu/jammy, raspbian/bullseye, ...) test-patches test that all Debian/Ubuntu patches apply fine (with git apply --check) @@ -83,9 +83,9 @@ IMPORTANT: the current OS must match the distro, and the WeeChat sources Examples: $0 devel debian/sid - $0 stable debian/stretch - $0 1.9 ubuntu/artful - $0 1.9-2 ubuntu/zesty + $0 stable debian/bullseye + $0 1.9 ubuntu/jammy + $0 1.9-2 ubuntu/focal $0 test-patches EOF |