File size: 176 Bytes
fbe84a7 |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
if [ "${TRAVIS_OS_NAME}" == "linux" ]
then
export CHROME_BIN="/usr/bin/google-chrome"
export DISPLAY=:99.0
sh -e /etc/init.d/xvfb start &
fi
|