Skip to content

Commit

Permalink
bygroup need not be compressed by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkw31 committed Jan 20, 2025
1 parent 496b62b commit f1fa205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/summarise.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Summarise takes the following arguments
If filename ends in '.gz' the file will be gzip compressed.
--groupUser,-g
groupUser output file. Defaults to DEFAULTDIR/bygroup.gz, if --defaultDir is set.
groupUser output file. Defaults to DEFAULTDIR/bygroup, if --defaultDir is set.
If filename ends in '.gz' the file will be gzip compressed.
--basedirsDB,-b
Expand Down Expand Up @@ -182,7 +182,7 @@ func setArgsDefaults() {
}

if groupUser == "" {
groupUser = filepath.Join(defaultDir, "bygroup.gz")
groupUser = filepath.Join(defaultDir, "bygroup")
}

if basedirsDB == "" {
Expand Down

0 comments on commit f1fa205

Please sign in to comment.