From ed0109e8ce93f4182c68f06a7dbf12f7485edf8f Mon Sep 17 00:00:00 2001 From: 0xobjectObject <110209617+0xobjectObject@users.noreply.github.com> Date: Mon, 18 Nov 2024 18:04:54 +0100 Subject: [PATCH] fix bashism --- install/deploy/scripts/start-mev-boost.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install/deploy/scripts/start-mev-boost.sh b/install/deploy/scripts/start-mev-boost.sh index 3a222ce41..ebf91c5ea 100755 --- a/install/deploy/scripts/start-mev-boost.sh +++ b/install/deploy/scripts/start-mev-boost.sh @@ -7,7 +7,9 @@ parse_additional_flags() { # Check if the environment variable MEV_BOOST_ADDITIONAL_FLAGS is not empty if [ -n "$MEV_BOOST_ADDITIONAL_FLAGS" ]; then # Split the input string into an array of key-value pairs using comma as the delimiter - IFS=',' read -r -a pairs <<< "$MEV_BOOST_ADDITIONAL_FLAGS" + IFS=',' read -r -a pairs <