Fix typo xvfbrun -> xvfb-run

This commit is contained in:
Kris De Volder
2018-05-04 15:37:11 -07:00
parent 1c888819ba
commit d2987473e6

View File

@@ -17,9 +17,9 @@ mkdir -p ${workdir}/jars
# Use maven to build jdt ls extension
cd ../../headless-services/jdt-ls-extension
if command -v xvfbrun ; then
if command -v xvfb-run ; then
echo "Using xvfb to run in headless environment..."
xvfbrun ../mvnw clean integration-test
xvfb-run ../mvnw clean integration-test
else
../mvnw clean integration-test
fi