Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: tools/bots/dartino_namer.py

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/bots/dartino_namer.py
diff --git a/tools/bots/fletch_namer.py b/tools/bots/dartino_namer.py
similarity index 91%
rename from tools/bots/fletch_namer.py
rename to tools/bots/dartino_namer.py
index da81a8f94aa9a2312334af2edf36bab01cf76854..921d110f43c702bc4fd74efe387a21966724d6b3 100644
--- a/tools/bots/fletch_namer.py
+++ b/tools/bots/dartino_namer.py
@@ -4,14 +4,14 @@
import bot_utils
-class FletchGCSNamer(bot_utils.GCSNamer):
+class DartinoGCSNamer(bot_utils.GCSNamer):
def __init__(self, channel=bot_utils.Channel.BLEEDING_EDGE,
release_type=bot_utils.ReleaseType.RAW, temporary=False):
- super(FletchGCSNamer, self).__init__(channel, release_type, False)
+ super(DartinoGCSNamer, self).__init__(channel, release_type, False)
if temporary:
- self.bucket = 'gs://fletch-temporary'
+ self.bucket = 'gs://dartino-temporary'
else:
- self.bucket = 'gs://fletch-archive'
+ self.bucket = 'gs://dartino-archive'
def dartino_sdk_directory(self, revision):
return self._variant_directory('sdk', revision)
@@ -44,7 +44,7 @@ class FletchGCSNamer(bot_utils.GCSNamer):
self.arm_agent_filename(revision)])
def raspbian_filename(self):
- return 'fletch_raspbian.img'
+ return 'dartino_raspbian.img'
def raspbian_zipfilename(self):
return '%s.zip' % self.raspbian_filename()
« pkg/file/lib/file.dart ('K') | « tools/benchmarking_files ('k') | tools/bots/fletch.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698