Skip to content

Commit 3bcb269

Browse files
committed
clean up
Signed-off-by: Aminu 'Seun Joshua <seun.aminujoshua@gmail.com>
1 parent 41a7783 commit 3bcb269

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/trigger/src/cli/stdio.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ impl StdioLoggingExecutorHooks {
111111
&sanitized_component_id,
112112
STDOUT_LOG_FILE_SUFFIX,
113113
) {
114-
let _ = std::fs::File::create(stdout_log_path);
114+
_ = std::fs::File::create(stdout_log_path);
115115
}
116116

117117
if let Some(stderr_log_path) = sanitized_log_path(
118118
self.log_dir.as_deref(),
119119
&sanitized_component_id,
120120
STDERR_LOG_FILE_SUFFIX,
121121
) {
122-
let _ = std::fs::File::create(stderr_log_path);
122+
_ = std::fs::File::create(stderr_log_path);
123123
}
124124
}
125125
}

0 commit comments

Comments
 (0)