Fix tags list in 'repos' command
This commit is contained in:
parent
f3ea526fc9
commit
d49246a823
2
bare.sh
2
bare.sh
|
@ -231,7 +231,7 @@ if [[ $CMD == "repos" ]]; then
|
||||||
if [[ -z ${tok[2]} ]]; then
|
if [[ -z ${tok[2]} ]]; then
|
||||||
tags="n/a"
|
tags="n/a"
|
||||||
else
|
else
|
||||||
tags=`echo "${tok[2]}" | sed -e 's/,/ /'`
|
tags=`echo "${tok[2]}" | sed -e 's/,/ /g'`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf "$format" "$thisrepo" "$thispath" "$tags"
|
printf "$format" "$thisrepo" "$thispath" "$tags"
|
||||||
|
|
Loading…
Reference in New Issue