diff options
Diffstat (limited to 'support/go-format')
-rwxr-xr-x | support/go-format | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/go-format b/support/go-format index b5f47b7..59af23c 100755 --- a/support/go-format +++ b/support/go-format @@ -1,7 +1,7 @@ #!/usr/bin/env ruby def main(check) - go_files = Dir['go/**/*.go'].reject { |p| p.start_with?('go/vendor/') } + go_files = Dir['go/**/*.go'] cmd = %w[gofmt -s -l] cmd << '-w' unless check cmd += go_files |