diff options
| author | Axel Forsman | 2020-09-13 14:30:52 +0200 |
|---|---|---|
| committer | Axel Forsman | 2020-09-13 15:48:46 +0200 |
| commit | ad61c0992c41fcd962a82e3c89577752cf640b20 (patch) | |
| tree | f5e7c65e8afe6432075e15314e837e3ed4642f3c | |
| parent | a423c8c4e542ed4f3877ab6d93b0eb6551138845 (diff) | |
| download | vim-helptag-versions-ad61c0992c41fcd962a82e3c89577752cf640b20.tar.bz2 | |
Use ':' as Git tag delimiter
Git tags are allowed to contain commas but not colons.
| -rwxr-xr-x | difftags | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,8 +17,8 @@ tags=$(git -C "$repo" for-each-ref \ tmp=$(mktemp -d) mkfifo --mode=0600 "$tmp/p" printf '\n%s' "$tags" > "$tmp/p" & -for p in $(echo "$tags" | paste --delimiters=, "$tmp/p" -); do - IFS=, read -r a b << EOF +for p in $(echo "$tags" | paste --delimiters=: "$tmp/p" -); do + IFS=: read -r a b << EOF $p EOF # Find all help tags added with $b |
