Containerizing things.
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Colin 2024-06-12 16:54:56 -04:00
parent 190f4ced35
commit eaddc1c58f
8 changed files with 2 additions and 2 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

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