diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-03 19:51:59 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-03 19:51:59 +0200 |
commit | 5ed9ecd7c21a2fc139bda26c6865143011e0781a (patch) | |
tree | 9babc1daa6d7ed02afdc0ed5c9afc0a21d161f53 /Documentation | |
parent | kde-misc/krusader: Switch 9999 back to git master (diff) | |
download | kde-5ed9ecd7c21a2fc139bda26c6865143011e0781a.tar.gz kde-5ed9ecd7c21a2fc139bda26c6865143011e0781a.tar.bz2 kde-5ed9ecd7c21a2fc139bda26c6865143011e0781a.zip |
Documentation: plasma-bump.sh: restrict mask and mark_unreleased to .0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/maintainers/new/plasma-bump.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Documentation/maintainers/new/plasma-bump.sh b/Documentation/maintainers/new/plasma-bump.sh index 978f9cc857..2eeb09e60b 100755 --- a/Documentation/maintainers/new/plasma-bump.sh +++ b/Documentation/maintainers/new/plasma-bump.sh @@ -48,8 +48,11 @@ if ! [[ -f sets/kde-plasma-${major_version} ]]; then Documentation/maintainers/regenerate-files fi -mask_from_set kde-plasma-${major_version} ${VERSION} ${kfv} -mark_unreleased plasma ${VERSION} +# only .0 version gets non public tarballs pre-release +if [[ ${VERSION} == *.0 ]]; then + mask_from_set kde-plasma-${major_version} ${VERSION} ${kfv} + mark_unreleased plasma ${VERSION} +fi bump_packages_from_set kde-plasma-${major_version} ${major_version}.49.9999 ${VERSION} commit_packages ${kfmv} "${VERSION} version bump" |