Merge pull request #41 from jgennis/depfix
Fix a sub-Blueprints deps bug.
This commit is contained in:
commit
0894cbc1a9
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue