From ffd4e7a0241af10f4dc89b1c37151c52ce7a6f56 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Thu, 24 Aug 2023 18:25:29 +0200 Subject: [PATCH] avoid verbose debug logs when using make (#5348) Remove `set -x` from Makefile target to reduce debug noice during build. --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 351eff767..ba86f49b6 100644 --- a/Makefile +++ b/Makefile @@ -744,7 +744,6 @@ clean-gnosis-chain: libnimbus_lc.a: | build deps + echo -e $(BUILD_MSG) "build/$@" && \ - set -x && \ rm -f build/$@ && \ $(ENV_SCRIPT) $(NIMC) c -d:disable_libbacktrace -d:release --app:staticlib --noMain --nimcache:nimcache/libnimbus_lc_static -o:build/$@ $(NIM_PARAMS) beacon_chain/libnimbus_lc/libnimbus_lc.nim $(SILENCE_WARNINGS) && \ echo -e $(BUILD_END_MSG) "build/$@" @@ -753,7 +752,6 @@ libnimbus_lc.a: | build deps # `-fsanitize=undefined` in Windows: https://github.com/msys2/MINGW-packages/issues/3163 test_libnimbus_lc: libnimbus_lc.a + echo -e $(BUILD_MSG) "build/$@" && \ - set -x && \ EXTRA_FLAGS=() && \ case "$$(uname)" in \ Darwin) \