Skip to content

Commit

Permalink
Fix issue with mismatching repo names (appsody#342)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Groeger <[email protected]>
  • Loading branch information
groeges authored and skoh7645 committed Oct 31, 2019
1 parent 9995c65 commit 479eafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ do
then
index_url=file://$x
y=$(basename $x)
if appsody repo list | grep -q -e "^\*\?${y%.*}"
if appsody repo list | awk '{print $1}' | grep -e "${y%.*}$"
then
echo "Repo ${y%.*} exists"
else
Expand Down

0 comments on commit 479eafa

Please sign in to comment.