From bb6e62e56917fd993e14b4e6d7006aa9f8d4cafc Mon Sep 17 00:00:00 2001 From: partisan Date: Sun, 8 Dec 2024 17:57:29 +0100 Subject: [PATCH] updated patch.go to work with updated patch script --- spitfire/patch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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