mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-07-06 09:00:23 -04:00
9 lines
168 B
Bash
9 lines
168 B
Bash
|
#!/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
|