We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecd1167 commit b836ce9Copy full SHA for b836ce9
scripts/performance-tests-kevm.sh
@@ -109,7 +109,7 @@ mkdir -p $SCRIPT_DIR/logs
109
# use special options if given, but restore KORE_RPC_OPTS afterwards
110
if [ ! -z "${FEATURE_SERVER_OPTS}" ]; then
111
echo "Using special options '${FEATURE_SERVER_OPTS}' via KORE_RPC_OPTS"
112
- if [ ! -z "${KORE_RPC_OPTS}" ]; then
+ if [ ! -z "${KORE_RPC_OPTS:-}" ]; then
113
PRIOR_OPTS=${KORE_RPC_OPTS}
114
fi
115
export KORE_RPC_OPTS=${FEATURE_SERVER_OPTS}
@@ -120,7 +120,7 @@ killall kore-rpc-booster || echo "No zombie processes found"
120
121
122
if [ -z "$BUG_REPORT" ]; then
123
- if [ ! -z "${PRIOR_OPTS}" ]; then
+ if [ ! -z "${PRIOR_OPTS:-}" ]; then
124
export KORE_RPC_OPTS=${PRIOR_OPTS}
125
else
126
unset KORE_RPC_OPTS
0 commit comments