From c86193390ccef1147502baaa249d89695bc47985 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Mon, 20 Mar 2023 09:32:17 +0100 Subject: [PATCH] Small improvements to README.repackaged --- src/org/argeo/build/Repackage.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/argeo/build/Repackage.java b/src/org/argeo/build/Repackage.java index 09f78f7..89522c0 100644 --- a/src/org/argeo/build/Repackage.java +++ b/src/org/argeo/build/Repackage.java @@ -1423,8 +1423,8 @@ public class Repackage { String m2Repo = manifest.getMainAttributes().getValue(ARGEO_ORIGIN_M2_REPO.toString()); String originDesc = manifest.getMainAttributes().getValue(ARGEO_ORIGIN_M2.toString()); if (originDesc != null) - writer.append("The original component has M2 coordinates " + originDesc.replace(',', '\n') + "\n" - + (m2Repo != null ? "\nin M2 repository" + m2Repo + "\n" : "") + "\n"); + writer.append("The original component has M2 coordinates:\n" + originDesc.replace(',', '\n') + "\n" + + (m2Repo != null ? "\nin M2 repository " + m2Repo + "\n" : "")); else { originDesc = manifest.getMainAttributes().getValue(ARGEO_ORIGIN_URI.toString()); if (originDesc != null) -- 2.30.2