From 384bef24ccfe2835987c767738541a890ec2e938 Mon Sep 17 00:00:00 2001 From: Yanis HAMOUDI <yanis.hamoudi@etu.u-pec.fr> Date: Thu, 13 Mar 2025 21:08:00 +0100 Subject: [PATCH] Correction du message d'erreur dans BakefileParser -> bakefile au lieu de makefile --- src/fr/monlouyan/bakefile/BakefileParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fr/monlouyan/bakefile/BakefileParser.java b/src/fr/monlouyan/bakefile/BakefileParser.java index 5d4d348..a6f5a54 100644 --- a/src/fr/monlouyan/bakefile/BakefileParser.java +++ b/src/fr/monlouyan/bakefile/BakefileParser.java @@ -204,7 +204,7 @@ public class BakefileParser { Set<String> phonyTargets = new HashSet<>(); if (!Files.exists(Paths.get(filename))) { - System.out.println("*** No targets specified and no makefile found. Stop."); + System.out.println("*** No targets specified and no bakefile found. Stop."); System.exit(2); }