Skip to content

Commit

Permalink
Merge pull request #313 from akete/master
Browse files Browse the repository at this point in the history
Fixed issue with simple_copy (related to issue #121)
  • Loading branch information
navilan committed Feb 7, 2016
2 parents 30fb385 + 06ebbbc commit 4f9c82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyde/generator.py
Expand Up @@ -149,7 +149,7 @@ def update_deps(self, resource):
dep_res.relative_path].append(rel_path)
else:
deps.extend(self.get_dependencies(dep_res))
if resource.uses_template:
if resource.uses_template and not resource.simple_copy:
deps.extend(self.template.get_dependencies(rel_path))
deps = list(set(deps))
if None in deps:
Expand Down

0 comments on commit 4f9c82f

Please sign in to comment.