From 15b473597f70470ab18ac03e12f2fcf9178625f0 Mon Sep 17 00:00:00 2001 From: partisan Date: Sun, 8 Dec 2024 20:30:24 +0100 Subject: [PATCH] oopsie --- spitfire/patch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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