1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-22 12:29:06 +02:00

_incr_version: prompt for target wlroots release

This commit is contained in:
Drew DeVault 2019-12-31 10:27:13 -05:00
parent f501a60c14
commit a44ae8869b

View File

@ -2,5 +2,13 @@
old_version="$1"
new_version="$2"
sed -i meson.build -e "s/version: '$old_version'/version: '$new_version'/g"
printf "Minimum wlroots version? "
read wlr_version_min
printf "Maximum wlroots version? "
read wlr_version_max
sed -i meson.build -e "s/wlroots_version =.*/wlroots_version = ['>=$wlr_version_min', '<$wlr_version_max']/"
git add meson.build
git commit -m "Update version to $new_version"