mirror of
https://github.com/cytopia/devilbox.git
synced 2025-01-13 00:09:57 +00:00
17 lines
285 B
Plaintext
17 lines
285 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
if [ -z "$SELENIUM" ] ; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
mkdir -p ~/browserstack
|
||
|
cd ~/browserstack
|
||
|
if [ ! -f BrowserStackLocal ] ; then
|
||
|
wget https://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip
|
||
|
unzip BrowserStackLocal-linux-x64.zip
|
||
|
fi
|
||
|
|