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

Unified Diff: packager.py

Issue 29332527: Issue 3404 - Add platform directory to devenv path (Closed)
Patch Set: Created Dec. 10, 2015, 8:05 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 71ac371faf5f11b623c99ff9ed3aebbc2f8ce747..ff2fe911e82c909cdf7c16775e251c20ec168132 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