• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

x1unix / go-playground / 15595931129

11 Jun 2025 09:19PM UTC coverage: 75.204%. Remained the same
15595931129

push

github

web-flow
chore(deps): bump brace-expansion from 1.1.11 to 1.1.12 in /web (#504)

Bumps [brace-expansion](https://github.com/juliangruber/brace-expansion) from 1.1.11 to 1.1.12.
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12)

---
updated-dependencies:
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

737 of 980 relevant lines covered (75.2%)

5.89 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/pkg/util/cmdutil/panic.go
1
package cmdutil
2

3
import (
4
        "fmt"
5
        "os"
6
)
7

8
// FatalOnError prints error to stderr and shuts down the application.
9
//
10
// Used when logging facility isn't initialized yet.
11
//
12
// Does nothing if passed error is nil.
13
func FatalOnError(err error) {
×
14
        if err == nil {
×
15
                return
×
16
        }
×
17

18
        _, _ = fmt.Fprintln(os.Stderr, "Fatal error:", err)
×
19
        os.Exit(1)
×
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc