Fix tags list in 'repos' command

This commit is contained in:
Rob Pearce 2019-03-22 22:10:44 +11:00
parent f3ea526fc9
commit d49246a823
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ if [[ $CMD == "repos" ]]; then
if [[ -z ${tok[2]} ]]; then
tags="n/a"
else
tags=`echo "${tok[2]}" | sed -e 's/,/ /'`
tags=`echo "${tok[2]}" | sed -e 's/,/ /g'`
fi
printf "$format" "$thisrepo" "$thispath" "$tags"