From 1dede5f9b3bd1053c797274f1bc0a0b074d6c3e5 Mon Sep 17 00:00:00 2001 From: Ivan Valdes Date: Tue, 17 Dec 2024 21:52:52 -0800 Subject: [PATCH] scripts: remove duplicate bom fix in fix make target The BOM fix is called from the fix-bom target, which is also a prerequisite for the fix target. Therefore, running `make fix` runs the BOM fix twice. Signed-off-by: Ivan Valdes --- scripts/fix.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/fix.sh b/scripts/fix.sh index fc4b50fcc62..91e3018bc15 100755 --- a/scripts/fix.sh +++ b/scripts/fix.sh @@ -33,7 +33,6 @@ log_callout -e "\\nFixing etcd code for you...\n" run_for_modules mod_tidy_fix || exit 2 run_for_modules run ${GO_CMD} fmt || exit 2 -run_for_module tests bom_fix || exit 2 bash_ws_fix || exit 2 log_success -e "\\nSUCCESS: etcd code is fixed :)"