Skip to content

Commit

Permalink
remove remaining references to logtrace
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec committed Oct 29, 2024
1 parent 00f276e commit adc43c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 3 additions & 4 deletions docker/dist/entry_point.sh
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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}"
Expand Down Expand Up @@ -258,4 +258,3 @@ tar czf "${DIR}.tar.gz" "${DIR}"
# don't leave the directory hanging around
rm -rf "${DIR}"
cd - >/dev/null

0 comments on commit adc43c5

Please sign in to comment.