blob: c4e2450869075289fbad8be2ed9837f1a73a36b3 [file] [log] [blame]
#!/usr/bin/env vpython3
# Copyright 2018 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
from core import path_util
path_util.AddPyUtilsToPath()
from cli_tools import update_wpr
if __name__ == '__main__':
sys.exit(update_wpr.Main(sys.argv[1:]))