mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
29 lines
616 B
Python
29 lines
616 B
Python
|
#!/usr/bin/env python
|
||
|
import subprocess
|
||
|
|
||
|
from env import commit_range
|
||
|
|
||
|
files = subprocess.check_output([
|
||
|
'git', 'diff', '--diff-filter=ACMR',
|
||
|
'--name-only', '...'.join(commit_range), '--',
|
||
|
])
|
||
|
|
||
|
exit_status = 0
|
||
|
|
||
|
for filename in files.split('\n'):
|
||
|
if filename.endswith('.go'):
|
||
|
try:
|
||
|
out = subprocess.check_output(['gofmt', '-s', '-l', filename])
|
||
|
if out != '':
|
||
|
print out,
|
||
|
exit_status = 1
|
||
|
except subprocess.CalledProcessError:
|
||
|
exit_status = 1
|
||
|
|
||
|
if exit_status != 0:
|
||
|
print 'Reformat the files listed above with "gofmt -s -w" and try again.'
|
||
|
exit(exit_status)
|
||
|
|
||
|
print 'All files pass gofmt.'
|
||
|
exit(0)
|