Commit 29da4b27 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm: fix search file in ALT Linux repo

parent 371f2395
...@@ -29,7 +29,8 @@ __alt_local_content_search() ...@@ -29,7 +29,8 @@ __alt_local_content_search()
{ {
[ -n "$USETTY" ] && echo "Search in $CI for $1..." [ -n "$USETTY" ] && echo "Search in $CI for $1..."
grep -h -- ".*$1.*\t" $CI | sed -e "s|\(.*\)\t\(.*\)|\2: \1|g" # note! tabulation below!
grep -h -- ".*$1.* " $CI | sed -e "s|\(.*\)\t\(.*\)|\2: \1|g"
} | $OUTCMD } | $OUTCMD
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment