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

This commit is contained in:
Colin 2024-06-12 17:08:28 -04:00
parent eaddc1c58f
commit dd2c809177
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

@ -213,7 +213,7 @@ func filterDiffOutput(diffOutput, cname string, ignores []string) (string, error
// Construct the filter command
args := append([]string{filename}, ignores...)
cmd := exec.Command("oculus_filter", args...)
cmd := exec.Command("/usr/local/bin/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