mirror of https://github.com/docker/docs.git
Merge pull request #3592 from tianon/fix-travis-vendor
Fix Travis to not check gofmt on vendor/*
This commit is contained in:
commit
12d00d19bb
|
@ -11,6 +11,9 @@ files = subprocess.check_output([
|
||||||
exit_status = 0
|
exit_status = 0
|
||||||
|
|
||||||
for filename in files.split('\n'):
|
for filename in files.split('\n'):
|
||||||
|
if filename.startswith('vendor/'):
|
||||||
|
continue # we can't be changing our upstream vendors for gofmt, so don't even check them
|
||||||
|
|
||||||
if filename.endswith('.go'):
|
if filename.endswith('.go'):
|
||||||
try:
|
try:
|
||||||
out = subprocess.check_output(['gofmt', '-s', '-l', filename])
|
out = subprocess.check_output(['gofmt', '-s', '-l', filename])
|
||||||
|
|
Loading…
Reference in New Issue