Skip to content

Commit

Permalink
fixed path contains : (windows ...)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwluc committed Nov 21, 2023
1 parent 858bdd5 commit e6ba362
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data class XesDefinition(
@Throws(Exception::class)
fun XesDefinition.toXMLFile(basePath: String?, logger: Logger? = null) {
val prefix = if (!basePath.isNullOrEmpty()) "$basePath/" else ""
val filename = "$prefix$processDefinitionId.xml"
val filename = "$prefix$processDefinitionId.xml".replace(":", "-")

logger?.debug("Writing XES to file {}", filename)

Expand Down

0 comments on commit e6ba362

Please sign in to comment.