Browse Source

build,travis: fix return code when "No new or modified packages found!"

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
lilik-openwrt-22.03
Etienne Champetier 7 years ago
parent
commit
0bffa6b48b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .travis_do.sh

+ 2
- 2
.travis_do.sh View File

@ -61,8 +61,8 @@ test_packages2() {
PKGS=$(git diff --name-only "$TRAVIS_COMMIT_RANGE" | grep 'Makefile$' | grep -v '/files/' | awk -F'/Makefile' '{ print $1 }')
if [ -z "$PKGS" ] ; then
echo_blue "No new or modified packages found!" >&2
exit 0
echo_blue "No new or modified packages found!"
return 0
fi
echo_blue "=== Found new/modified packages:"


Loading…
Cancel
Save