Eli Bendersky 7c160440be Use tabs as the canonical source indentation in git
Space conversion is done during generation only. Fixes #192
2019-06-04 07:30:58 -07:00

10 lines
110 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
paths=$(ls examples/*/*.go)
for path in $paths; do
gofmt -w=true $path
done