1#!/usr/bin/python3 2# Copyright 2023 The ANGLE Project Authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5import os 6import subprocess 7import sys 8 9 10def main(args): 11 return subprocess.run(args, stdout=subprocess.PIPE, text=True).returncode 12 13 14if __name__ == '__main__': 15 sys.exit(main(sys.argv[1:])) 16