imporoved id encoding

This commit is contained in:
2025-08-24 18:41:51 +02:00
parent 54934f1eab
commit f93b85b55e
2 changed files with 3 additions and 3 deletions

View File

@@ -54,5 +54,5 @@ BEGIN {
sortk = year ? year : 0
if (local_releases[id])
line = format_local line
print sortk, line, id, local_releases[id]
print sortk, line, id ":" local_releases[id]
}

View File

@@ -251,7 +251,7 @@ if [ "${1:-}" = "--internal-list-releases" ]; then
sort -n -r |
cut -d "$(printf '\t')" -f 2- |
column -t -s "$(printf '\t')" |
sed 's| \+\([0-9a-f-]\+\) *\(.*$\)$|\t\1\t\2|'
sed 's| \+\([0-9a-f-]\+\):\(.*$\)$|\t\1\t\2|'
exit 0
fi
@@ -375,7 +375,7 @@ if [ "${1:-}" = "--internal-list-local-releases" ]; then
sort -n -r |
cut -d "$(printf '\t')" -f 2- |
column -t -s "$(printf '\t')" |
sed 's| \+\([0-9a-f-]\+\) *\(.*$\)$|\t\1\t\2|'
sed 's| \+\([0-9a-f-]\+\):\(.*$\)$|\t\1\t\2|'
exit 0
fi