#!/bin/sh export VERSION_SUFFIX="-SNAPSHOT" if which xvfb-run > /dev/null; then xvfb-run -s "-screen 0, 1366x768x24" sbt test scripted else echo "Xvfb not installed..." 1>&2 sbt test scripted fi