Merge pull request #3484 from ctiller/mergabit

Enforce a more mergable build.yaml format
pull/3546/head
Vijay Pai 10 years ago
commit 72d4593406
  1. 2216
      build.yaml
  2. 2
      tools/buildgen/build-cleaner.py

File diff suppressed because it is too large Load Diff

@ -88,7 +88,7 @@ for filename in sys.argv[1:]:
if grp not in js: continue
js[grp] = sorted([clean_elem(x) for x in js[grp]],
key=lambda x: (x.get('language', '_'), x['name']))
output = yaml.dump(js, indent=2, width=80)
output = yaml.dump(js, indent=2, width=80, default_flow_style=False)
# massage out trailing whitespace
lines = []
for line in output.splitlines():

Loading…
Cancel
Save