Accept both singular and plural for --group-by (#2330)

This commit is contained in:
Leo R. Lundgren
2019-11-20 19:05:27 +01:00
parent 26d1f9f4ba
commit 4d2aa18273
2 changed files with 9 additions and 3 deletions

View File

@@ -31,11 +31,11 @@ func GroupSnapshots(snapshots Snapshots, options string) (map[string]Snapshots,
for _, option := range GroupOptionList {
switch option {
case "host":
case "host", "hosts":
GroupByHost = true
case "paths":
case "path", "paths":
GroupByPath = true
case "tags":
case "tag", "tags":
GroupByTag = true
case "":
default: