Merge pull request #1724 from talentedmrjones/dagger-error-on-action-not-exists

fixes issue where specifying a non existent action doesnt error properly
This commit is contained in:
Richard Jones 2022-03-08 19:23:20 -07:00 committed by GitHub
commit 116e25ce20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,6 +111,7 @@ func doHelp(cmd *cobra.Command, _ []string) {
errorMsg string
loadedMsg string
actionLookupPathMsg string
action *plan.Action
actions []*plan.Action
)
@ -120,8 +121,13 @@ func doHelp(cmd *cobra.Command, _ []string) {
} else {
loadedMsg = "Plan loaded from " + planPath
actionLookupPath := getTargetPath(cmd.Flags().Args())
actions = p.Action().FindByPath(actionLookupPath).Children
actionLookupPathMsg = fmt.Sprintf(`%s:`, actionLookupPath.String())
action = p.Action().FindByPath(actionLookupPath)
if action == nil {
errorMsg = "Error: action not found\n\n"
} else {
actions = action.Children
actionLookupPathMsg = fmt.Sprintf(`%s:`, actionLookupPath.String())
}
}
fmt.Printf(`%s%s