Skip to content

Commit

Permalink
chore: appease lll in clabverter entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
carlmontanari committed Jun 7, 2024
1 parent 0aac4d6 commit 9e987b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion clabverter/clabverter.go
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ func (c *Clabverter) load() error {
c.logger.Debug("attempting to load spec values....")

rawSpecValuesBytes, err := os.ReadFile(c.valuesPath)

if err != nil {
c.logger.Criticalf(
"failed reading spec values file at '%s' from disk, error: %s",
Expand Down
9 changes: 5 additions & 4 deletions cmd/clabverter/cli/entrypoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ func Entrypoint() *cli.App {
Flags: []cli.Flag{
&cli.StringFlag{
Name: topologyFile,
Usage: `set the topology file to parse.
If not set, clabverter will look for a file named '*.clab.y*ml'`,
Usage: "set the topology file to parse. If not set, clabverter will look for" +
" a file named '*.clab.y*ml'",
Required: false,
Value: "",
},
&cli.StringFlag{
Name: specsFile,
Usage: `set the values file to parse that will be included in the topology manifest spec.`,
Name: specsFile,
Usage: "set the values file to parse that will be included in the topology" +
" manifest spec",
Required: false,
Value: "",
},
Expand Down

0 comments on commit 9e987b4

Please sign in to comment.