This commit is contained in:
partisan 2024-12-08 20:30:24 +01:00
parent bb6e62e569
commit 15b473597f

View file

@ -53,7 +53,7 @@ func ApplyPatches(sourcePath string, patchesRepo string) error {
} }
// Apply the patches using `go run apply.go` // 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.Dir = patchesCloneDir // Run from the patches directory
applyCmd.Stdout = os.Stdout applyCmd.Stdout = os.Stdout
applyCmd.Stderr = os.Stderr applyCmd.Stderr = os.Stderr