avoid verbose debug logs when using make (#5348)

Remove `set -x` from Makefile target to reduce debug noice during build.
This commit is contained in:
Etan Kissling 2023-08-24 18:25:29 +02:00 committed by GitHub
parent 36413c8f21
commit ffd4e7a024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -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) \