diff options
| author | Paul Buetow <paul@buetow.org> | 2023-05-01 14:48:12 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-05-01 14:48:12 +0300 |
| commit | 3fbf8c458df210f68849512478dff6b93df12f46 (patch) | |
| tree | 3d5535d5c64155ebe651e33acf2979c8138d5caf | |
| parent | 26e630fb1392727297f30d20cf941e9d0383889b (diff) | |
fix dependency
| -rw-r--r-- | internal/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config.go b/internal/config.go index cb55ec8..eb8fa81 100644 --- a/internal/config.go +++ b/internal/config.go @@ -58,7 +58,7 @@ func (c config) sanityCheck() error { for name, check := range c.Checks { for _, depName := range check.DependsOn { if _, ok := c.Checks[depName]; !ok { - return fmt.Errorf("check '%s' depends on non existant check '%s'", depName, name) + return fmt.Errorf("Check '%s' depends on non existant check '%s'", name, depName) } } } |
