Skip to content

Commit

Permalink
Made the licenses script output all problems (flutter#44223)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaaclarke authored Aug 1, 2023
1 parent 631cb56 commit 9dae7b7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ci/licenses.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

set -e
# Do not exit when a non-zero return value is encountered to output all errors.
# See: https://github.com/flutter/flutter/issues/131680
# set -e
shopt -s nullglob

# Needed because if it is set, cd may print the path it changed to.
Expand Down Expand Up @@ -65,7 +67,7 @@ dart --version
# Runs the tests for the license script.
function run_tests() (
cd "$SRC_DIR/flutter/tools/licenses"
find -name "*_test.dart" | xargs -n 1 dart --enable-asserts
find . -name "*_test.dart" | xargs -n 1 dart --enable-asserts
)

# Collects the license information from the repo.
Expand All @@ -91,7 +93,7 @@ function verify_licenses() (
cd "$SRC_DIR"

# These files trip up the script on Mac OS X.
find . -name ".DS_Store" -exec rm {} \;
find . -name ".DS_Store" -exec rm -f {} \;

collect_licenses

Expand Down

0 comments on commit 9dae7b7

Please sign in to comment.