Merge pull request #23322 from veblush/absl-yaml

Removed sort_keys=True in yaml.gen.py
pull/23324/head
Esun Kim 5 years ago committed by GitHub
commit 1ebc23161c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/abseil-cpp/preprocessed_builds.yaml.gen.py

@ -206,7 +206,7 @@ def main():
builds = generate_builds("absl")
os.chdir(previous_dir)
with open(OUTPUT_PATH, 'w') as outfile:
outfile.write(yaml.dump(builds, indent=2, sort_keys=True))
outfile.write(yaml.dump(builds, indent=2))
if __name__ == "__main__":

Loading…
Cancel
Save