mirror of
https://github.com/google/blockly.git
synced 2026-01-09 18:10:08 +01:00
16 lines
276 B
Bash
Executable File
16 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
DIR="../webdriverio-test"
|
|
FILE=selenium-server-standalone-3.0.1.jar
|
|
|
|
if [ ! -d $DIR ]; then
|
|
mkdir $DIR
|
|
fi
|
|
|
|
if [ ! -f $DIR/$FILE ]; then
|
|
cd $DIR && curl -O http://selenium-release.storage.googleapis.com/3.0/selenium-server-standalone-3.0.1.jar
|
|
sleep 5
|
|
fi
|
|
|
|
|
|
|