diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-02-13 19:58:31 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-02-13 19:58:35 +0100 |
commit | dcd484e545edfbeeb20e585593827dbafeacd632 (patch) | |
tree | 9ff060a887b0522deef452c72db6e376789c226f /tools | |
parent | core: escape spaces when serializing as well (diff) | |
download | systemd-dcd484e545edfbeeb20e585593827dbafeacd632.tar.xz systemd-dcd484e545edfbeeb20e585593827dbafeacd632.zip |
tools: fix typo
Follow-up for 6d55e3a3641b35dd2bb4306711b4db4004bf6817.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/meson-vcs-tag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/meson-vcs-tag.sh b/tools/meson-vcs-tag.sh index 6bac603929..c6d140acb8 100755 --- a/tools/meson-vcs-tag.sh +++ b/tools/meson-vcs-tag.sh @@ -31,6 +31,6 @@ else [ -z "$c" ] && c="${fallback}" # Replace any hyphens with carets which are allowed in versions by pacman whereas hyphens are not. Git # versions with carets will also sort higher than their non-git version counterpart both in pacman - # versioning and in version comparision spec versioning. + # versioning and in version comparison spec versioning. echo "$c" | sed 's/^v//; s/-/^/g' fi |