So much for golang error processing...

This commit is contained in:
Guillaume Tardif 2020-06-19 10:52:21 +02:00
parent 34d76bd561
commit 8eb380a5a4
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ func createAciCommand() *cobra.Command {
RunE: func(cmd *cobra.Command, args []string) error {
contextData, description, err := getAciContextData(cmd.Context(), opts)
if err != nil {
return nil
return err
}
return createDockerContext(cmd.Context(), args[0], store.AciContextType, description, contextData)
},