diff --git a/spitfire/patch.go b/spitfire/patch.go index b43c240..5d2104a 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("run.sh", "--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