21
0
Fork 0

v0.0.412 fix GenerateIDSpecs accepting nil for opt
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m32s Details

This commit is contained in:
Mike Schwörer 2024-03-11 20:58:06 +01:00
parent 780905ba35
commit 6df4f5f2a1
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ var rexIDChecksumConst = rext.W(regexp.MustCompile(`const ChecksumIDGenerator =
//go:embed id-generate.template
var templateIDGenerateText string
func GenerateIDSpecs(sourceDir string, destFile string, opt *IDGenOptions) error {
func GenerateIDSpecs(sourceDir string, destFile string, opt IDGenOptions) error {
debugOutput := langext.Coalesce(opt.DebugOutput, false)

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.411"
const GoextVersion = "0.0.412"
const GoextVersionTimestamp = "2024-03-11T20:43:37+0100"
const GoextVersionTimestamp = "2024-03-11T20:58:06+0100"