Skip to content

Commit 94e8432

Browse files
committed
update output to be more readable
1 parent 0e46837 commit 94e8432

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bin/deploy

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,19 @@ echo "Tagging the version commit with the version number"
7272
git tag "${git_tag}"
7373

7474
echo "Running some final checks"
75+
echo
7576

7677
exit_status=0
7778

7879
if grep -Fxq "${version}" openapi.yaml; then
79-
echo "OK - version ${version} is present in openapi.yaml"
80+
echo "OK - version ${version} is present in openapi.yaml"
8081
else
8182
echo "ERROR - version ${version} is not present in openapi.yaml"
8283
exit_status=1
8384
fi
8485

8586
if $(git tag | grep -Fxq "${git_tag}"); then
86-
echo "OK - ${git_tag} is present in git tags"
87+
echo "OK - ${git_tag} is present in git tags"
8788
else
8889
echo "ERROR - ${git_tag} is not present in git tags"
8990
exit_status=1

0 commit comments

Comments
 (0)