Fixing path stripping regression

This commit is contained in:
Ben Vanik 2012-10-08 22:11:58 -07:00
parent e3ca70b81e
commit 9bd348577a
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ class JsDependencyGraph(object):
for src_path in src_paths:
dep_file = self.dep_files[src_path]
rel_path = os.path.relpath(dep_file.src_path, base_path)
#rel_path = anvil.util.strip_build_paths(rel_path)
rel_path = anvil.util.strip_build_paths(rel_path)
lines.append('goog.addDependency(\'%s\', %s, %s);' % (
anvil.util.ensure_forwardslashes(rel_path),
dep_file.provides, dep_file.requires))