3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-14 20:10:05 +01:00

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

Dieser Commit ist enthalten in:
Aikar 2016-04-09 21:46:09 -04:00
Ursprung 04064bc956
Commit 38b8a26236

Datei anzeigen

@ -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