diff --git a/spitfire/patch.go b/spitfire/patch.go index 3066048..b43c240 100644 --- a/spitfire/patch.go +++ b/spitfire/patch.go @@ -53,7 +53,7 @@ func ApplyPatches(sourcePath string, patchesRepo string) error { } // Apply the patches using `go run apply.go` - applyCmd := exec.Command("go", "run", "apply.go", "--path="+sourcePath) + applyCmd := exec.Command("run.sh", "--path "+sourcePath) applyCmd.Dir = patchesCloneDir // Run from the patches directory applyCmd.Stdout = os.Stdout applyCmd.Stderr = os.Stderr