list-git-tags: fix for tags with / in the tag name

linsui b6c2a01e ffe472ef

Changed files
+1 -1
pkgs
common-updater
scripts
+1 -1
pkgs/common-updater/scripts/list-git-tags
···
tags=$(git ls-remote --tags --refs "$url")
# keep only the version part of the tag
-
tags=$(echo "$tags" | cut --delimiter=/ --field=3)
+
tags=$(echo "$tags" | cut --delimiter=/ --field=3-)
echo "$tags"