feat: better output for excluded patches (#77)

This commit is contained in:
bogadana 2022-07-10 12:13:26 +02:00 committed by GitHub
parent cd3ded1fbd
commit ac7c7a9a1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,10 +28,10 @@ fun Patcher.addPatchesFiltered(
val args = MainCommand.args.pArgs!!
if (excludePatches && args.excludedPatches.contains(patchName)) {
logger.info("$prefix: Explicitly excluded")
logger.info("$prefix: Explicitely excluded")
return@patch
} else if (!patch.include && !args.includedPatches.contains(patchName)) {
logger.info("$prefix: Explicitly excluded")
logger.info("$prefix: Not explicitely included")
return@patch
}