We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308a754 commit 5871c36Copy full SHA for 5871c36
src/main.rs
@@ -288,7 +288,10 @@ async fn main() -> Result<()> {
288
if let Ok(_) = std::env::var("CI") {
289
// If running in a CI environment, set the SARIF as a relative path
290
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());
+ log::debug!(
292
+ "CI environment detected, setting SARIF path as relative: {}",
293
+ relative_path.display()
294
+ );
295
action.set_sarif_results(relative_path.display().to_string());
296
} else {
297
log::debug!("Setting SARIF path as absolute: {}", sarif_output.display());
0 commit comments