Skip to content

Commit 3403009

Browse files
committed
Redirect benchmark error messages to stderr
1 parent 213b82c commit 3403009

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mithril-test-lab/mithril-end-to-end/benchmark-aggregator.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ if [ -z "${MIN_SIGNERS}" ]; then
1313
fi
1414

1515
if [ -z "${MAX_SIGNERS}" ]; then
16-
echo Missing environment variable: MAX_SIGNERS
16+
echo "Missing environment variable: MAX_SIGNERS" >/dev/stderr
1717
exit 1
1818
fi
1919

2020
if [ -z "${STEP_SIGNERS}" ]; then
21-
echo Missing environment variable: STEP_SIGNERS
21+
echo "Missing environment variable: STEP_SIGNERS" >/dev/stderr
2222
exit 1
2323
fi
2424

@@ -27,12 +27,12 @@ if [ -z "${MIN_CLIENTS}" ]; then
2727
fi
2828

2929
if [ -z "${MAX_CLIENTS}" ]; then
30-
echo Missing environment variable: MAX_CLIENTS
30+
echo "Missing environment variable: MAX_CLIENTS" >/dev/stderr
3131
exit 1
3232
fi
3333

3434
if [ -z "${STEP_CLIENTS}" ]; then
35-
echo Missing environment variable: STEP_CLIENTS
35+
echo "Missing environment variable: STEP_CLIENTS" >/dev/stderr
3636
exit 1
3737
fi
3838

0 commit comments

Comments
 (0)