This commit is contained in:
bytedream 2023-12-08 23:04:04 +01:00
parent 9487dd3dbf
commit 6c7ab04b99
2 changed files with 2 additions and 2 deletions

View file

@ -162,7 +162,7 @@ pub async fn cli_entrypoint() {
ctrlc::set_handler(move || {
debug!("Ctrl-c detected");
if let Ok(dir) = fs::read_dir(&env::temp_dir()) {
if let Ok(dir) = fs::read_dir(env::temp_dir()) {
for file in dir.flatten() {
if file
.path()