fix: extend error handling
All checks were successful
Golang Tests / unittest (stable, ubuntu-latest-amd64) (push) Successful in 8s
Lint Markdown files / markdown-lint (push) Successful in 4s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (push) Successful in 2m31s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (push) Successful in 45s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (push) Successful in 1m50s

This commit is contained in:
2025-06-01 13:47:15 +02:00
parent 17695e0996
commit f0955bc835
3 changed files with 9 additions and 9 deletions

View File

@ -5,5 +5,5 @@ import "git.cryptic.systems/volker.raschek/civ/cmd"
var version string
func main() {
cmd.Execute(version)
_ = cmd.Execute(version)
}