Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruemmelspalter committed Dec 26, 2022
1 parent 6453fa9 commit c95eb0c
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,8 @@ class Renderer {
filenameProvider: (RenderMeta) -> String = { it.document.id.toString() }
): Renderer {
return command(1) { meta ->
val x = listOf("sed", "-i", "-E") + replacements.map { listOf("-e", "s/${it.key}/${it.value}/g") }.flatten() +
listOf("sed", "-i", "-E") + replacements.map { listOf("-e", "s/${it.key}/${it.value}/g") }.flatten() +
listOf(Paths.get(meta.workingDirectory.toString(), filenameProvider(meta)).toString())
println(x)
x
}
}

Expand Down

0 comments on commit c95eb0c

Please sign in to comment.