1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-03 21:37:28 +01:00

Provide ability to wrap test server command for willies...

This commit is contained in:
Aikar 2016-04-09 21:46:09 -04:00
parent 309e2bd0d3
commit f1da39ab0f

View file

@ -106,4 +106,8 @@ fi
# START / LOG
#
$cmd 2>&1 | tee -a ${PAPER_TEST_OUTPUT_LOG:-logs/output.log}
if [ ! -z "$PAPER_TEST_COMMAND_WRAPPER" ]; then
$PAPER_TEST_COMMAND_WRAPPER $cmd
else
$cmd 2>&1 | tee -a ${PAPER_TEST_OUTPUT_LOG:-logs/output.log}
fi