From d4ad2875508a2331162798d1c78c025c2985d7eb Mon Sep 17 00:00:00 2001 From: Kreyren Date: Tue, 7 Dec 2021 19:55:38 +0000 Subject: [PATCH] potato/make: Attempt at better wording for success Currently there is just a difference of one word in-between fail/success state, this attempts to differenciate them to make the output easier to read for complicated recipes. --- potato/make.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/potato/make.scm b/potato/make.scm index f9135eb..298fa52 100644 --- a/potato/make.scm +++ b/potato/make.scm @@ -285,7 +285,7 @@ targets listed on the parsed command-line are used." #f) ;; else (begin - (print "The recipe for “~A” has succeeded.~%" target) + (print "The recipe “~A” finished successfully.~%" target) (if (not (null? rest)) (loop (car rest) (cdr rest))