Commit d0e1bede authored by mit@google.com's avatar mit@google.com

Rename Fletch to Dartino

BUG=

Review URL: https://codereview.chromium.org/1642493003

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@298413 0039d316-1c4b-4281-b951-d872f2087c98
parent 0f5a519b
...@@ -8,14 +8,14 @@ import config_util # pylint: disable=F0401 ...@@ -8,14 +8,14 @@ import config_util # pylint: disable=F0401
# This class doesn't need an __init__ method, so we disable the warning # This class doesn't need an __init__ method, so we disable the warning
# pylint: disable=W0232 # pylint: disable=W0232
class Fletch(config_util.Config): class Dartino(config_util.Config):
"""Basic Config class for Fletch.""" """Basic Config class for Dartino."""
@staticmethod @staticmethod
def fetch_spec(props): def fetch_spec(props):
url = 'https://github.com/dart-lang/fletch.git' url = 'https://github.com/dartino/sdk.git'
solution = { solution = {
'name' :'fletch', 'name' :'sdk',
'url' : url, 'url' : url,
'deps_file': 'DEPS', 'deps_file': 'DEPS',
'managed' : False, 'managed' : False,
...@@ -34,11 +34,11 @@ class Fletch(config_util.Config): ...@@ -34,11 +34,11 @@ class Fletch(config_util.Config):
@staticmethod @staticmethod
def expected_root(_props): def expected_root(_props):
return 'fletch' return 'sdk'
def main(argv=None): def main(argv=None):
return Fletch().handle_args(argv) return Dartino().handle_args(argv)
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment