From a39dd8e87442361afca6e3157462e4eda56b139c Mon Sep 17 00:00:00 2001 From: tersec Date: Tue, 29 Oct 2024 10:02:44 +0000 Subject: [PATCH] remove remaining references to logtrace (#6684) --- .github/workflows/nightly_build.yml | 2 +- docker/dist/entry_point.sh | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml index 77452566f..fc43ad37d 100644 --- a/.github/workflows/nightly_build.yml +++ b/.github/workflows/nightly_build.yml @@ -13,7 +13,7 @@ on: #pull_request: env: - # Build and include deposit_contract nimbus_signing_node nimbus_light_client logtrace in archive + # Build and include deposit_contract nimbus_signing_node nimbus_light_client in archive BUILD_TOOLS: 1 jobs: diff --git a/docker/dist/entry_point.sh b/docker/dist/entry_point.sh index d6ee7b89e..6b828a279 100755 --- a/docker/dist/entry_point.sh +++ b/docker/dist/entry_point.sh @@ -1,13 +1,13 @@ #!/usr/bin/env bash -# Copyright (c) 2020-2023 Status Research & Development GmbH. Licensed under +# Copyright (c) 2020-2024 Status Research & Development GmbH. Licensed under # either of: # - Apache License, version 2.0 # - MIT license # at your option. This file may not be copied, modified, or distributed except # according to those terms. -set -e +set -eo pipefail cd /home/user/nimbus-eth2 git config --global core.abbrev 8 @@ -24,7 +24,7 @@ echo "Build Tools = ${BUILD_TOOLS}" if [[ "${BUILD_TOOLS}" == "1" ]]; then echo "Including tools in distribution" - BINARIES="${BINARIES} deposit_contract nimbus_signing_node nimbus_light_client logtrace" + BINARIES="${BINARIES} deposit_contract nimbus_signing_node nimbus_light_client" fi echo -e "\nPLATFORM=${PLATFORM}" @@ -258,4 +258,3 @@ tar czf "${DIR}.tar.gz" "${DIR}" # don't leave the directory hanging around rm -rf "${DIR}" cd - >/dev/null -