diff --git a/beacon_chain/conf.nim b/beacon_chain/conf.nim index 0eaba72ff..e336d257b 100644 --- a/beacon_chain/conf.nim +++ b/beacon_chain/conf.nim @@ -37,7 +37,7 @@ type BeaconNodeConf* = object logLevel* {. - defaultValue: "DEBUG" + defaultValue: "INFO" desc: "Sets the log level" name: "log-level" }: string @@ -158,7 +158,7 @@ type graffiti* {. desc: "The graffiti value that will appear in proposed blocks. " & - "You can use a 0x-prefixed hex encoded string to specify raw bytes." + "You can use a 0x-prefixed hex encoded string to specify raw bytes" name: "graffiti" }: Option[GraffitiBytes] verifyFinalization* {. @@ -354,8 +354,8 @@ type ValidatorClientConf* = object logLevel* {. - defaultValue: "DEBUG" - desc: "Sets the log level." + defaultValue: "INFO" + desc: "Sets the log level" name: "log-level" }: string logFile* {. @@ -387,7 +387,7 @@ type of VCNoCommand: graffiti* {. desc: "The graffiti value that will appear in proposed blocks. " & - "You can use a 0x-prefixed hex encoded string to specify raw bytes." + "You can use a 0x-prefixed hex encoded string to specify raw bytes" name: "graffiti" }: Option[GraffitiBytes] stopAtEpoch* {. diff --git a/docker/dist/entry_point.sh b/docker/dist/entry_point.sh index 3b7cd1d25..eb668613f 100755 --- a/docker/dist/entry_point.sh +++ b/docker/dist/entry_point.sh @@ -23,6 +23,7 @@ rm -rf "dist/${PREFIX}"*.tar.gz if [[ -d "${DIST_PATH}" ]]; then rm -rf "${DIST_PATH}" fi + mkdir -p "${DIST_PATH}" mkdir "${DIST_PATH}/scripts" mkdir "${DIST_PATH}/build" @@ -36,7 +37,7 @@ for BINARY in ${BINARIES}; do cd - >/dev/null done sed -e "s/GIT_COMMIT/${GIT_COMMIT}/" docker/dist/README.md > "${DIST_PATH}/README.md" -cp -a scripts/makedir.sh scripts/run-beacon-node.sh "${DIST_PATH}/scripts" +cp -a scripts/run-beacon-node.sh "${DIST_PATH}/scripts" cp -a ./run-*-beacon-node.sh "${DIST_PATH}/" #cp -a docs/the_nimbus_book "${DIST_PATH}/"