Merge pull request #17 from vbatts/improve_flag_branches
gomtree: ensure validating a populated hierarchy
This commit is contained in:
commit
3dc8a31929
1 changed files with 6 additions and 1 deletions
|
@ -90,7 +90,7 @@ func main() {
|
|||
return
|
||||
}
|
||||
dh.WriteTo(os.Stdout)
|
||||
} else {
|
||||
} else if dh != nil {
|
||||
// else this is a validation
|
||||
res, err := mtree.Check(rootPath, dh, currentKeywords)
|
||||
if err != nil {
|
||||
|
@ -104,6 +104,11 @@ func main() {
|
|||
fmt.Println(failure)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
log.Println("neither validating or creating a manifest. Please provide additional arguments")
|
||||
isErr = true
|
||||
defer os.Exit(1)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue