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 <