Skip to content

Commit

Permalink
BUGFIX: netdiagnostics flag change (v13.1.1)
Browse files Browse the repository at this point in the history
- fix: netdiagnostics configuration flag change (now it is `--checks filename`)
  • Loading branch information
vjmp committed Jan 20, 2023
1 parent 19a7fc4 commit 4e29d4a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/netdiagnostics.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ func init() {

netDiagnosticsCmd.Flags().BoolVarP(&jsonFlag, "json", "j", false, "Output in JSON format")
netDiagnosticsCmd.Flags().BoolVarP(&netConfigShow, "show", "s", false, "Show configuration instead of running diagnostics.")
netDiagnosticsCmd.Flags().StringVarP(&netConfigFilename, "config", "c", "", "Network configuration file. [optional]")
netDiagnosticsCmd.Flags().StringVarP(&netConfigFilename, "checks", "c", "", "Network checks configuration file. [optional]")
}
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package common

const (
Version = `v13.1.0`
Version = `v13.1.1`
)
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# rcc change log

## v13.1.1 (date: 20.1.2023) UNSTABLE

- fix: netdiagnostics configuration flag change (now it is `--checks filename`)

## v13.1.0 (date: 19.1.2023) UNSTABLE

- feature: more network related configurable diagnostics
Expand Down

0 comments on commit 4e29d4a

Please sign in to comment.