From c28c877ce88417d97fa0a06432767de5b8624ac7 Mon Sep 17 00:00:00 2001 From: Yanis HAMOUDI Date: Thu, 6 Feb 2025 18:29:54 +0100 Subject: [PATCH] =?UTF-8?q?Correction=20de=20l'affichage=20du=20message=20?= =?UTF-8?q?"up=20to=20date"=20pour=20le=20rendre=20coh=C3=A9rent=20avec=20?= =?UTF-8?q?les=20messages=20originaux=20de=20make?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fr/monlouyan/bakefile/CommandExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fr/monlouyan/bakefile/CommandExecutor.java b/src/fr/monlouyan/bakefile/CommandExecutor.java index d3ed16d..cf1509c 100644 --- a/src/fr/monlouyan/bakefile/CommandExecutor.java +++ b/src/fr/monlouyan/bakefile/CommandExecutor.java @@ -81,7 +81,7 @@ public class CommandExecutor { // On affiche "up to date" seulement après avoir traité TOUTES les règles // et seulement si AUCUNE règle n'avait besoin d'être mise à jour if (rule.getName().equals(BakefileParser.getFirstTarget()) && !needsUpdate) { - System.out.println("bake: '" + rule.getName() + "' is up to date."); + System.out.println("bake: `" + rule.getName() + "' is up to date."); } } } \ No newline at end of file