Fixing path stripping regression
This commit is contained in:
parent
e3ca70b81e
commit
9bd348577a
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue