Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Aug 12, 2024
1 parent c75df0a commit a4bb002
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion builder/deps.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type Deps struct {
Path string
}

// Write deps file.
// Write deps section.
func (b *Deps) Write(writer io.Writer) (err error) {
input, err := b.read()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion builder/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func (b *Issues) RuleError() (r *RuleError) {
return &b.ruleErr
}

// Write issues file.
// Write issues section.
func (b *Issues) Write(writer io.Writer) (err error) {
input, err := b.read()
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions builder/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ func (m *Manifest) Write() (err error) {
defer func() {
_ = file.Close()
}()
_, _ = file.Write([]byte(api.BeginAnalysisMarker))
_, _ = file.Write([]byte(api.BeginMainMarker))
_, _ = file.Write([]byte{'\n'})
encoder := yaml.NewEncoder(file)
err = encoder.Encode(m.Analysis)
if err != nil {
return
}
_, _ = file.Write([]byte(api.EndAnalysisMarker))
_, _ = file.Write([]byte(api.EndMainMarker))
_, _ = file.Write([]byte{'\n'})
err = m.Issues.Write(file)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed
)

replace github.com/konveyor/tackle2-hub => github.com/jortel/tackle2-hub v0.0.0-20240812162716-6b52211f2ed6
replace github.com/konveyor/tackle2-hub => github.com/jortel/tackle2-hub v0.0.0-20240812164957-d159aa3f74b2

require (
github.com/Nerzal/gocloak/v10 v10.0.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ=
github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8=
github.com/jortel/go-utils v0.1.2 h1:R0TcGRCcwoL793CymcKC5AF9idWXT2cR6eQ2xpBUsoI=
github.com/jortel/go-utils v0.1.2/go.mod h1:sl6vav63ODI0sUfSz8e0pImNmCVFnVsuOFhZmwe9GDk=
github.com/jortel/tackle2-hub v0.0.0-20240812162716-6b52211f2ed6 h1:cMZJtQy8fXh7qOniKYjZk1Ue2OHCIXLiXjQR8+MczDM=
github.com/jortel/tackle2-hub v0.0.0-20240812162716-6b52211f2ed6/go.mod h1:5c5A3i/oARdUp1yo+iYJFFvsIlsbsVGBZT7/CQji9YY=
github.com/jortel/tackle2-hub v0.0.0-20240812164957-d159aa3f74b2 h1:MrjgmH8RFPuxzKd2ljRcjXbllE5Or6zxHgYhD1nltjY=
github.com/jortel/tackle2-hub v0.0.0-20240812164957-d159aa3f74b2/go.mod h1:5c5A3i/oARdUp1yo+iYJFFvsIlsbsVGBZT7/CQji9YY=
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
Expand Down

0 comments on commit a4bb002

Please sign in to comment.