From 5ad4b9f43a16f049722e9ba89469a8ea3e026317 Mon Sep 17 00:00:00 2001 From: easy Date: Mon, 4 May 2020 17:16:55 +1000 Subject: [PATCH] Autoformat *.BUILD files. --- tools/format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/format.sh b/tools/format.sh index 9b9565222b..1b150dbca3 100755 --- a/tools/format.sh +++ b/tools/format.sh @@ -51,7 +51,7 @@ fi if which "$BUILDIFIER" >/dev/null; then echo "Running $BUILDIFIER" "$BUILDIFIER" $($FIND -name WORKSPACE -print -o -name BUILD -print -o \ - -name '*.bzl' -print) + -name '*.BUILD' -o -name '*.bzl' -print) else echo "Can't find buildifier. It can be installed with:" echo " go get github.com/bazelbuild/buildtools/buildifier"