From e9e220dd8d96fe467eefb3b8fd4fe981bff73f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Sun, 17 Mar 2024 14:32:44 +0100 Subject: [PATCH] comment --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 409294d..ba62115 100644 --- a/src/main.rs +++ b/src/main.rs @@ -773,6 +773,7 @@ fn main() { let args = Args::parse(); + // if we have a --global-tempdir-path passed, create all tempdirs in there, otherwise use TempDir default which is /tmp/ let global_tempdir = if let Some(ref custom_tempdir_path) = args.global_tempdir_path { let mut custom_tmpdir = std::path::PathBuf::from(&custom_tempdir_path); let dir_display = custom_tmpdir.display();