From 2823c663a0d0845c2abcbcef76efca9af550ca75 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Mon, 20 Mar 2023 19:57:56 +0100 Subject: Change default to /tmp --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 88d6b90..d72b347 100644 --- a/main.go +++ b/main.go @@ -53,7 +53,7 @@ Asemble options: -d, --directory: The ct-sans working directory (Default: "data") -b, --buffer-size: Max memory to use in Gigabytes (Default: 1) - -t, --temp-dir: Temporary on-disk storage directory (Default: /tmp/ct-sans) + -t, --temp-dir: Temporary on-disk storage directory (Default: /tmp) -p, --parallel: Number of CPUs to use (Default: 1) ` @@ -107,7 +107,7 @@ func main() { ctflag.Duration(&fs, &opts.MetricsInterval, "metrics", "m", 16*time.Second) ctflag.Uint64(&fs, &opts.BufferSize, "buffer-size", "b", 1) - ctflag.String(&fs, &opts.TempDir, "temp-dir", "t", "/tmp/ct-sans") + ctflag.String(&fs, &opts.TempDir, "temp-dir", "t", "/tmp") ctflag.Uint64(&fs, &opts.Parallel, "parallel", "p", 1) // Parse command-line options and hardcode additional values -- cgit v1.2.3