git: 586c651f2baa - main - mfc_candidates: remove leftover message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 15 Nov 2024 21:40:29 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=586c651f2baa6597e769effd3816bae7c2833448
commit 586c651f2baa6597e769effd3816bae7c2833448
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-11-15 21:36:44 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-11-15 21:39:23 +0000
mfc_candidates: remove leftover message
When I first converted mfc-candidates to Lua I did not implement -X
(exclude file), and just emitted a message that -X wasn't implemented.
Support was implemented before I pushed the change but I forgot to
remove the message.
Fixes: 48f3fcabea80 ("mfc-candidates: Convert to Lua")
Sponsored by: The FreeBSD Foundation
---
tools/tools/git/mfc-candidates.lua | 1 -
1 file changed, 1 deletion(-)
diff --git a/tools/tools/git/mfc-candidates.lua b/tools/tools/git/mfc-candidates.lua
index a8ac89bde327..b29f1ad4d121 100755
--- a/tools/tools/git/mfc-candidates.lua
+++ b/tools/tools/git/mfc-candidates.lua
@@ -176,7 +176,6 @@ local function main()
verbose = verbose + 1
elseif opt == "-X" then
exclude_file = arg[i + 1]
- print ("-X not working")
i = i + 1
else
break