diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | main.go | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1 +1 @@ -ct-sans +data @@ -39,7 +39,7 @@ Help: Options: - -d, --directory: The ct-sans working directory (Default: "ct-sans") + -d, --directory: The ct-sans working directory (Default: "data") -w, --workers: Number of parallel download workers per log (Default: 2) -k, --batch-disk: Certificate batch size before persisting (Default: 16384) -q, --batch-req: Certificate batch size to use in request (Default: 512) @@ -76,7 +76,7 @@ func main() { // Define command-line options fs := ctflag.NewFlagSet() opts := options{} - ctflag.String(&fs, &opts.Directory, "directory", "d", "ct-sans") + ctflag.String(&fs, &opts.Directory, "directory", "d", "data") ctflag.Uint64(&fs, &opts.WorkersPerLog, "workers", "w", 2) ctflag.Uint64(&fs, &opts.PersistSize, "batch-disk", "k", 16384) ctflag.Uint64(&fs, &opts.BatchSize, "batch-req", "q", 512) |