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

Unified Diff: tools/create_debian_packages.py

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments 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
« no previous file with comments | « tools/clang_update.py ('k') | tools/create_tarball.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_debian_packages.py
diff --git a/tools/create_debian_packages.py b/tools/create_debian_packages.py
index ddfdad883515b63be36d3a74e16648cda80e570e..15dc0671f73c35186b84a133d5959e6b8f08484a 100755
--- a/tools/create_debian_packages.py
+++ b/tools/create_debian_packages.py
@@ -23,7 +23,7 @@ from shutil import copyfile
HOST_OS = utils.GuessOS()
HOST_CPUS = utils.GuessCpus()
-FLETCH_DIR = abspath(join(__file__, '..', '..'))
+DARTINO_DIR = abspath(join(__file__, '..', '..'))
def BuildOptions():
result = optparse.OptionParser()
@@ -115,10 +115,10 @@ def Main():
arch = options.arch.split(',')
if not options.out_dir:
- out_dir = join(FLETCH_DIR, 'out')
+ out_dir = join(DARTINO_DIR, 'out')
if not tar_filename:
- tar_filename = join(FLETCH_DIR,
+ tar_filename = join(DARTINO_DIR,
utils.GetBuildDir(HOST_OS),
'dartino-%s.tar.gz' % utils.GetVersion())
« no previous file with comments | « tools/clang_update.py ('k') | tools/create_tarball.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698