dist: replace all '-' with '.'

Upstream: no

There is a code error that only first '-' is converted to '.'.
Fix it.

Signed-off-by: Kairui Song <kasong@tencent.com>
This commit is contained in:
Kairui Song 2022-12-27 17:36:38 +08:00
parent 13346c4c0d
commit 2b88f6dd2d
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ _get_rel_info_from_tag() {
fi
if [[ $rel ]]; then
echo "${rel/-/.}"
echo "${rel//-/.}"
fi
}