Merge pull request #41 from jgennis/depfix

Fix a sub-Blueprints deps bug.
This commit is contained in:
jgennis 2015-07-06 17:46:47 -07:00
commit 0894cbc1a9

View file

@ -743,7 +743,7 @@ func (c *Context) findSubdirBlueprints(dir string, subdirs, build []string, subB
// need to add the directory to the list of dependencies
// so that if someone adds a Blueprints file in the
// future we'll pick it up.
deps = append(deps, filepath.Dir(foundSubdir))
deps = append(deps, foundSubdir)
} else {
deps = append(deps, subBlueprints)
blueprints = append(blueprints, subBlueprints)