Fixup notification logging to stdout and notifications fixes.
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Colin 2024-06-13 12:36:42 -04:00
parent beb963d322
commit d31945672e
8 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -287,7 +287,7 @@ func filterDiffOutput(diffOutput, cname string, ignores []string) (string, error
// Construct the filter command
args := append([]string{filename}, ignores...)
cmd := exec.Command(oculusFilterPath, args...)
fullCommand := fmt.Sprintf("oculus_filter %s", strings.Join(cmd.Args, " "))
fullCommand := fmt.Sprintf("%s %s", oculusFilterPath, strings.Join(cmd.Args, " "))
log.Printf("Running command: %s", fullCommand)
fmt.Printf("Running command: %s\n", fullCommand) // Print the command to stdout for debugging