Skip to content

Commit

Permalink
Fix pkg name for Go
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Guerinoni <[email protected]>
  • Loading branch information
guerinoni committed Sep 1, 2023
1 parent c4395c6 commit 8cb77cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions openapi-gen/openapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func main() {
})

if err != nil {
fmt.Println("error executing template", err)
fmt.Println(err)
os.Exit(1)
}
}
Expand Down Expand Up @@ -181,7 +181,7 @@ func main() {
})

if err != nil {
fmt.Println("error executing template", err)
fmt.Println("error generating", name, err)
os.Exit(1)
}
}
Expand Down
2 changes: 1 addition & 1 deletion openapi-gen/templates/go/config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
additionalParameters:
package: stream-sdk
package: streamsdk
fileExtension: .go

0 comments on commit 8cb77cb

Please sign in to comment.