mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
2cd737abab
Do not rely on checked in Dart SDK for patch_sdk.py. Use dart_boostrap instead just like observatory does. R=kustermann@google.com, whesse@google.com BUG= Review URL: https://codereview.chromium.org/2464833002 .
31 lines
1,004 B
Python
Executable file
31 lines
1,004 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
import argparse
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import utils
|
|
|
|
usage = """patch_sdk.py [options]"""
|
|
|
|
def BuildArguments():
|
|
result = argparse.ArgumentParser(usage=usage)
|
|
result.add_argument("--dart-executable", help="dart executable", default=None)
|
|
return result
|
|
|
|
def main():
|
|
# Parse the options.
|
|
parser = BuildArguments()
|
|
(options, args) = parser.parse_known_args()
|
|
if options.dart_executable is not None:
|
|
options.dart_executable = os.path.abspath(options.dart_executable)
|
|
else:
|
|
options.dart_executable = os.path.join(utils.CheckedInSdkPath(), 'bin', 'dart')
|
|
dart_file = os.path.join(os.path.dirname(__file__), 'patch_sdk.dart')
|
|
subprocess.check_call([options.dart_executable, dart_file] + args);
|
|
|
|
if __name__ == '__main__':
|
|
main()
|