We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c80f76 commit 625c20eCopy full SHA for 625c20e
1 file changed
docker/owlbot/java/bin/format_source.sh
@@ -17,7 +17,7 @@ set -e
17
18
# Find all the java files relative to the current directory and format them
19
# using google-java-format
20
-list="$(find . -name '*.java' )"
+list="$(find . -name '*.java' -not -path ".*/samples/snippets/generated/**/*" )"
21
tmpfile=$(mktemp)
22
23
for file in $list;
@@ -35,4 +35,4 @@ done
35
36
cat $tmpfile | xargs java -jar /owlbot/google-java-format.jar --replace
37
38
-rm $tmpfile
+rm $tmpfile
0 commit comments