Index: tools/bots/sdk_dartino_patched.py |
diff --git a/tools/bots/sdk_fletch_patched.py b/tools/bots/sdk_dartino_patched.py |
similarity index 88% |
rename from tools/bots/sdk_fletch_patched.py |
rename to tools/bots/sdk_dartino_patched.py |
index 66b8dcf2776cdafdefb5779eda28537fcc75dbb7..609208a4ecbb59666c0029e41fd663d094729fdb 100644 |
--- a/tools/bots/sdk_fletch_patched.py |
+++ b/tools/bots/sdk_dartino_patched.py |
@@ -5,11 +5,11 @@ |
# BSD-style license that can be found in the LICENSE file. |
""" |
-Buildbot steps for building Dart SDK with Fletch-specific patches. |
+Buildbot steps for building Dart SDK with Dartino-specific patches. |
""" |
import os |
import sys |
-# We run this as third_party/fletch/tools/bots/sdk_fletch_patched.py |
+# We run this as third_party/dartino/tools/bots/sdk_dartino_patched.py |
sys.path.insert(0, os.path.join('tools', 'bots')) |
import bot |
@@ -18,7 +18,7 @@ import re |
utils = bot_utils.GetUtils() |
-PATCHED_BUILDER = r'dart-sdk-fletch-patched-(linux|mac)-(x64|arm)' |
+PATCHED_BUILDER = r'dart-sdk-dartino-patched-(linux|mac)-(x64|arm)' |
def BuildConfig(name, is_buildbot): |
"""Returns info for the current buildbot.""" |
@@ -51,7 +51,7 @@ def BuildSteps(build_info): |
build_info.mode, |
build_info.arch) |
revision = utils.GetGitRevision() |
- archive_path = 'fletch-archive/patched_dart_sdks/%s/' % revision |
+ archive_path = 'dartino-archive/patched_dart_sdks/%s/' % revision |
stripped_name = '%sdart-vm-%s-%s' % (archive_path, build_info.arch, |
build_info.system) |
unstripped_name = '%sdart-vm-%s-%s-symbols' % (archive_path, |