Skip to content

Commit

Permalink
Put test subcommand below stats
Browse files Browse the repository at this point in the history
  • Loading branch information
varungandhi-src committed Sep 26, 2024
1 parent b3ea6fd commit d223ba1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/scip/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ func commands() []*cli.Command {
lint := lintCommand()
print := printCommand()
snapshot := snapshotCommand()
test := testCommand()
stats := statsCommand()
return []*cli.Command{&lint, &print, &snapshot, &test, &stats}
test := testCommand()
return []*cli.Command{&lint, &print, &snapshot, &stats, &test}
}

//go:embed version.txt
Expand Down
2 changes: 1 addition & 1 deletion docs/CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ COMMANDS:
lint Flag potential issues with a SCIP index
print Print a SCIP index for debugging
snapshot Generate snapshot files for golden testing
test Validate a SCIP index against test files
stats Output useful statistics about a SCIP index
test Validate a SCIP index against test files
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
Expand Down

0 comments on commit d223ba1

Please sign in to comment.