From 03ddc1d4de297b066aadcaeb8e9ba634590e8607 Mon Sep 17 00:00:00 2001 From: gaaclarke <30870216+gaaclarke@users.noreply.github.com> Date: Fri, 6 Mar 2020 16:57:14 -0800 Subject: [PATCH] Started deleting .DS_Store files so licenses can run on mac os x. (#16998) --- ci/licenses.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/licenses.sh b/ci/licenses.sh index d411c875b..58b06ea8a 100755 --- a/ci/licenses.sh +++ b/ci/licenses.sh @@ -9,6 +9,9 @@ exitStatus=0 dart --version +# These files trip up the script on Mac OS X. +find . -name ".DS_Store" -exec rm {} \; + (cd flutter/tools/licenses; pub get; dart --enable-asserts lib/main.dart --src ../../.. --out ../../../out/license_script_output --golden ../../ci/licenses_golden) for f in out/license_script_output/licenses_*; do -- GitLab