helenus/bin/format.sh

8 lines
148 B
Bash
Raw Normal View History

#!/bin/bash
2017-10-10 17:55:08 +00:00
for f in $(find ./src -name \*.java); do
echo Formatting $f
java -jar ./lib/google-java-format-1.3-all-deps.jar --replace $f
done