mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
hack/validate/deprecate-integration-cli: don't exit on success
The `hack/validate/deprecate-integration-cli` script exited on success. As a result, validation steps to run afterwards would not be executed. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
e21019fa51
commit
9dde8f2b46
1 changed files with 12 additions and 12 deletions
|
@ -9,11 +9,8 @@ new_tests=$(
|
||||||
grep -E '^\+func (.*) Test' || true
|
grep -E '^\+func (.*) Test' || true
|
||||||
)
|
)
|
||||||
|
|
||||||
if [ -z "$new_tests" ]; then
|
if [ -n "$new_tests" ]; then
|
||||||
echo 'Congratulations! No new tests added to integration-cli.'
|
{
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "The following new tests were added to integration-cli:"
|
echo "The following new tests were added to integration-cli:"
|
||||||
echo
|
echo
|
||||||
echo "$new_tests"
|
echo "$new_tests"
|
||||||
|
@ -21,5 +18,8 @@ echo
|
||||||
echo "integration-cli is deprecated. Please add an API integration test to"
|
echo "integration-cli is deprecated. Please add an API integration test to"
|
||||||
echo "./integration/COMPONENT/. See ./TESTING.md for more details."
|
echo "./integration/COMPONENT/. See ./TESTING.md for more details."
|
||||||
echo
|
echo
|
||||||
|
} >&2
|
||||||
exit 1
|
false
|
||||||
|
else
|
||||||
|
echo 'Congratulations! No new tests added to integration-cli.'
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue