This commit is contained in:
wanwiset25 2025-09-16 03:24:36 +04:00
parent ae696dc547
commit 30e1a9a7fd
4 changed files with 2 additions and 10 deletions

View file

@ -26,7 +26,6 @@ WORKDIR /work
RUN apk add --no-cache bash curl RUN apk add --no-cache bash curl
COPY --from=builder /builder/build/bin/puppeth /usr/bin COPY --from=builder /builder/build/bin/puppeth /usr/bin
COPY --from=builder /builder/build/bin/XDC-local /usr/bin COPY --from=builder /builder/build/bin/XDC-local /usr/bin
COPY --from=builder /builder/build/bin/XDC-devnet /usr/bin COPY --from=builder /builder/build/bin/XDC-devnet /usr/bin

View file

@ -24,13 +24,6 @@ do
bootnodes="${bootnodes},$line" bootnodes="${bootnodes},$line"
fi fi
done < "$input" done < "$input"
#check last line since it's not included in "read" command https://stackoverflow.com/questions/12916352/shell-script-read-missing-last-line
if [ -z "${bootnodes}" ]
then
bootnodes=$line
else
bootnodes="${bootnodes},$line"
fi
log_level=3 log_level=3
if test -z "$LOG_LEVEL" if test -z "$LOG_LEVEL"