list-git-tags: fix for tags with / in the tag name
linsui 2 years ago b6c2a01e ffe472ef
··· 54 54 tags=$(git ls-remote --tags --refs "$url") 55 55 56 56 # keep only the version part of the tag 57 57 - tags=$(echo "$tags" | cut --delimiter=/ --field=3) 57 57 + tags=$(echo "$tags" | cut --delimiter=/ --field=3-) 58 58 59 59 echo "$tags"