#!/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:]))