roll-all: Fix args for GNU find(1)
Change-Id: I004581a42df5bd719819da36f8222b3cd0de8e7f Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/34006 Auto-Submit: David Neto <dneto@google.com> Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: Ryan Harrison <rharrison@chromium.org>
This commit is contained in:
parent
eb913d3829
commit
d0bb9b3c02
|
@ -36,7 +36,7 @@ fi
|
|||
|
||||
old_head=$(git rev-parse HEAD)
|
||||
|
||||
for i in $(find third_party -type d -maxdepth 1 -depth 1); do
|
||||
for i in $(find third_party -maxdepth 1 -mindepth 1 -type d); do
|
||||
name=`echo "${i%%/}" | cut -f2 -d'/' | tr '-' '_'`
|
||||
|
||||
if [ "x${name}" == "xcpplint" ]; then
|
||||
|
|
Loading…
Reference in New Issue