This commit is contained in:
Johannes Frohnmeyer 2022-11-03 15:03:13 +01:00
parent 3ee3c34ffc
commit 7dd2228ed0
Signed by: Johannes
GPG Key ID: E76429612C2929F4
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ final class PipelineUnpacker implements BiConsumer<Pipeline, Consumer<Pipeline>>
newDate.append(line).append('\n');
}
if (foundContent) {
pipelineConsumer.accept(new Pipeline(pipeline.name(), newDate.toString()));
pipelineConsumer.accept(new Pipeline(pipeline.name(), newDate.toString().trim()));
}
}