Skip to content

Commit

Permalink
reserve default of 0 plots
Browse files Browse the repository at this point in the history
  • Loading branch information
St3ffn committed Jun 6, 2021
1 parent ac3aa89 commit 13bff46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ DESCRIPTION:
Tool will perform the following calculation (AVAILABLE_DISK_SPACE/SINGLE_PLOT_SIZE)-RESERVED_PLOTS.

GLOBAL OPTIONS:
--reserve RESERVE, -r RESERVE RESERVE. the amount of plots to reserve. (default: 1)
--reserve RESERVE, -r RESERVE RESERVE. the amount of plots to reserve. (default: 0)
--verbose, -v enable verbose mode. (default: false)
--help, -h show help (default: false)
--version, -V print version (default: false)
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
var (
Args = os.Args
// Reserved defines the default amount of plots to reserve
Reserved uint64 = 1
Reserved uint64 = 0
)

// Context describes the environment of the tool execution
Expand Down

0 comments on commit 13bff46

Please sign in to comment.