v0.0.262 ignore _gen files in bfcodegen checksum-calc
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 46s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 46s
This commit is contained in:
parent
cdf2a6e76b
commit
f5766d639c
@ -59,6 +59,7 @@ func GenerateEnumSpecs(sourceDir string, destFile string) error {
|
||||
|
||||
files = langext.ArrFilter(files, func(v os.DirEntry) bool { return v.Name() != path.Base(destFile) })
|
||||
files = langext.ArrFilter(files, func(v os.DirEntry) bool { return strings.HasSuffix(v.Name(), ".go") })
|
||||
files = langext.ArrFilter(files, func(v os.DirEntry) bool { return !strings.HasSuffix(v.Name(), "_gen.go") })
|
||||
langext.SortBy(files, func(v os.DirEntry) string { return v.Name() })
|
||||
|
||||
newChecksumStr := goext.GoextVersion
|
||||
|
@ -49,6 +49,7 @@ func GenerateIDSpecs(sourceDir string, destFile string) error {
|
||||
|
||||
files = langext.ArrFilter(files, func(v os.DirEntry) bool { return v.Name() != path.Base(destFile) })
|
||||
files = langext.ArrFilter(files, func(v os.DirEntry) bool { return strings.HasSuffix(v.Name(), ".go") })
|
||||
files = langext.ArrFilter(files, func(v os.DirEntry) bool { return !strings.HasSuffix(v.Name(), "_gen.go") })
|
||||
langext.SortBy(files, func(v os.DirEntry) string { return v.Name() })
|
||||
|
||||
newChecksumStr := goext.GoextVersion
|
||||
|
@ -1,5 +1,5 @@
|
||||
package goext
|
||||
|
||||
const GoextVersion = "0.0.261"
|
||||
const GoextVersion = "0.0.262"
|
||||
|
||||
const GoextVersionTimestamp = "2023-09-18T10:38:25+0200"
|
||||
const GoextVersionTimestamp = "2023-09-18T10:42:43+0200"
|
||||
|
Loading…
Reference in New Issue
Block a user