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:
parent
13346c4c0d
commit
2b88f6dd2d
|
|
@ -235,7 +235,7 @@ _get_rel_info_from_tag() {
|
|||
fi
|
||||
|
||||
if [[ $rel ]]; then
|
||||
echo "${rel/-/.}"
|
||||
echo "${rel//-/.}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue