detect tab for all files under module (#2456)

This commit is contained in:
William Cheng 2019-03-20 15:14:18 +08:00 committed by GitHub
parent 59cdea7b5e
commit c10463600a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
#!/bin/bash
# grep for \t in the generators
RESULT=`find modules/openapi-generator/src/ -name "*.java" | xargs grep $'\t'`
RESULT=`find modules -name "*.java" | xargs grep $'\t'`
echo -e "$RESULT"