mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
22 lines
536 B
Python
Executable file
22 lines
536 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
# This program fails if ./tools/format.py changes any files.
|
|
|
|
import sys
|
|
import subprocess
|
|
import util
|
|
|
|
|
|
def main():
|
|
util.run([sys.executable, "tools/format.py"])
|
|
result = util.run_output(
|
|
["git", "status", "-uno", "--porcelain", "--ignore-submodules"],
|
|
exit_on_fail=True)
|
|
if result.out:
|
|
print("Run tools/format.py ")
|
|
print(result.out)
|
|
sys.exit(1)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|