summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-08-27 13:41:54 +0900
committerDrew DeVault <sir@cmpwn.com>2019-08-27 13:41:54 +0900
commitb6e3045d328a6f18c445f006e3dfb3cd60bd1df8 (patch)
tree627f1dba1f5f821399e7582757eafebf208eea1a
parent7e9a9f1439845af21f5e2f41f359f783e86ad989 (diff)
Further refinements to _incr_version script
-rwxr-xr-xcontrib/_incr_version3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/_incr_version b/contrib/_incr_version
index 7563965b7..b89ecd190 100755
--- a/contrib/_incr_version
+++ b/contrib/_incr_version
@@ -1,6 +1,5 @@
#!/bin/sh -eu
-old_version="$1"
new_version="$2"
-sed -i meson.build -e "s/version: '$old_version'/version: '$new_version'/g"
+sed -i meson.build -e "s/^\tversion: '.*'/\tversion: '$new_version'/"
git add meson.build
git commit -m "Update version to $new_version"