From 29cd4060947524a62d72cb66883ef34020257c11 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sat, 22 Mar 2025 18:46:14 +0000 Subject: [PATCH] Switch command checks around --- xmake.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmake.c b/xmake.c index 85159c5..01ede50 100644 --- a/xmake.c +++ b/xmake.c @@ -49,11 +49,11 @@ static int rule_run_command (const char *name, char *p, char *q) { while (isspace ((int) *s) || *s == '-' || *s == '@') { - if (*s == '-') { + if (*s == '@') { is_quiet = 1; } - if (*s == '@') { + if (*s == '-') { is_ignoring_errors = 1; } -- 2.34.1