Skip to content

Commit 5871c36

Browse files
committed
style: Update formatting
1 parent 308a754 commit 5871c36

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,10 @@ async fn main() -> Result<()> {
288288
if let Ok(_) = std::env::var("CI") {
289289
// If running in a CI environment, set the SARIF as a relative path
290290
let relative_path = sarif_output.strip_prefix(&cwd).unwrap_or(&sarif_output);
291-
log::debug!("CI environment detected, setting SARIF path as relative: {}", relative_path.display());
291+
log::debug!(
292+
"CI environment detected, setting SARIF path as relative: {}",
293+
relative_path.display()
294+
);
292295
action.set_sarif_results(relative_path.display().to_string());
293296
} else {
294297
log::debug!("Setting SARIF path as absolute: {}", sarif_output.display());

0 commit comments

Comments
 (0)