Commit 1f92c4e9 authored by generatedunixname89002005287564's avatar generatedunixname89002005287564 Committed by Facebook GitHub Bot
Browse files

vision/fair

Reviewed By: zsol

Differential Revision: D53258682

fbshipit-source-id: 3f006b5f31a2b1ffdc6323d3a3b08ac46c3162ce
parent 9b981f2c
...@@ -12,7 +12,7 @@ import sys ...@@ -12,7 +12,7 @@ import sys
from os.path import dirname, isfile, join from os.path import dirname, isfile, join
if __name__ == "__main__": def main() -> None:
# pyre-ignore[16] # pyre-ignore[16]
if len(sys.argv) > 1: if len(sys.argv) > 1:
# Parse from flags. # Parse from flags.
...@@ -36,3 +36,7 @@ if __name__ == "__main__": ...@@ -36,3 +36,7 @@ if __name__ == "__main__":
os.environ["PYTHONPATH"] = ":".join(sys.path) os.environ["PYTHONPATH"] = ":".join(sys.path)
for file_name in file_names: for file_name in file_names:
subprocess.check_call([sys.executable, file_name]) subprocess.check_call([sys.executable, file_name])
if __name__ == "__main__":
main() # pragma: no cover
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment