Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion install/deploy/scripts/start-mev-boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 <<EOF
$MEV_BOOST_ADDITIONAL_FLAGS
EOF

# Iterate over each key-value pair
for pair in "${pairs[@]}"; do
Expand Down