Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: packager.py

Issue 29334723: Issue 3404 - Add platform name to devenv path (Closed)
Patch Set: Concatinate the strings Created Jan. 27, 2016, 2:19 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packager.py
diff --git a/packager.py b/packager.py
index 7cf01736027521b3511091a3f7a2ebc4b6d8bca6..8a5765ad66bddbbb556960bbcda7b1e7c916701b 100644
--- a/packager.py
+++ b/packager.py
@@ -19,8 +19,8 @@ def getDefaultFileName(metadata, version, ext):
def getMetadataPath(baseDir, type):
return os.path.join(baseDir, 'metadata.%s' % type)
-def getDevEnvPath(baseDir):
- return os.path.join(baseDir, 'devenv')
+def getDevEnvPath(baseDir, type):
+ return os.path.join(baseDir, 'devenv.' + type)
def readMetadata(baseDir, type):
parser = ChainedConfigParser()
« no previous file with comments | « build.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld