update_wpr 361 B

123456789101112131415
  1. #!/usr/bin/env python3
  2. # Copyright 2018 the V8 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.
  5. import sys
  6. from core import path_util
  7. path_util.AddPyUtilsToPath()
  8. from cli_tools import update_wpr
  9. if __name__ == '__main__':
  10. sys.exit(update_wpr.Main(sys.argv[1:]))