test.sh 209 B

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