adde 'marker' type

This commit is contained in:
partisan 2025-04-09 20:21:38 +02:00
parent 1e8fea4287
commit 30881f4710
4 changed files with 98 additions and 0 deletions

View file

@ -172,6 +172,8 @@ func applyPatch(patchPath, rootPath string) error {
return applyNewModifications(outputFilePath, modifications)
case "copy":
return applyCopyPatch(inputFilePath, outputFilePath)
case "marker":
return applyMarkerPatch(outputFilePath, modifications)
default:
fmt.Printf("Type not specified defaulting to standard")
return applyStandardModifications(outputFilePath, modifications)