You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ contribution. See the [DCO](./DCO) file for details.
16
16
The following are required to work on devfile library:
17
17
18
18
- Git
19
-
- Go 1.21 or later
19
+
- Go 1.24 or later
20
20
21
21
## Code of Conduct
22
22
Before contributing to this repository, see [contributor code of conduct](https://github.com/devfile/api/blob/main/CODE_OF_CONDUCT.md#contributor-covenant-code-of-conduct)
errMsg:="expected to find one devfile image component with a deploy command for build. Currently there is more than one image component"
100
-
return devfilev1.Component{}, fmt.Errorf(errMsg)
99
+
return devfilev1.Component{}, fmt.Errorf("expected to find one devfile image component with a deploy command for build. Currently there is more than one image component")
101
100
}
102
101
}
103
102
}
104
103
105
104
// If there is not one image component defined in the deploy command, err out
errMsg:="expected to find one devfile image component with a deploy command for build. Currently there is no image component"
108
-
return devfilev1.Component{}, fmt.Errorf(errMsg)
106
+
return devfilev1.Component{}, fmt.Errorf("expected to find one devfile image component with a deploy command for build. Currently there is no image component")
0 commit comments