From 1618405c83c667392643a86cdfa161a74dc244b4 Mon Sep 17 00:00:00 2001 From: Greg Burd Date: Tue, 10 Oct 2017 13:45:39 -0400 Subject: [PATCH] Add the formatting helper shell script. --- bin/format.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bin/format.sh diff --git a/bin/format.sh b/bin/format.sh new file mode 100755 index 0000000..9e5e918 --- /dev/null +++ b/bin/format.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +for f in $(find src -name \*.java); do + java -jar ./lib/google-java-format-1.3-all-deps.jar --replace $f +done +