From d6bc4b90dab25e21e31662c5305ee11d00a87a77 Mon Sep 17 00:00:00 2001 From: Cody Littley Date: Mon, 7 Oct 2024 10:43:03 -0500 Subject: [PATCH] Add set -x flag Signed-off-by: Cody Littley --- api/builder/protoc.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/builder/protoc.sh b/api/builder/protoc.sh index e49592bf4..d0028be5c 100755 --- a/api/builder/protoc.sh +++ b/api/builder/protoc.sh @@ -2,6 +2,8 @@ # This script builds the eigenDA protobufs. +set +x + # The location where this script can be found. SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) @@ -32,3 +34,5 @@ protoc -I "${DISPERSER_PROTO_DIR}" -I "${PROTO_DIR}" \ --go-grpc_out="${DISPERSER_GRPC_DIR}" \ --go-grpc_opt=paths=source_relative \ "${DISPERSER_PROTO_DIR}"/**/*.proto + +set -x \ No newline at end of file