We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f11c1b6 commit 57b3ad8Copy full SHA for 57b3ad8
test/setup_travis.sh
@@ -12,7 +12,9 @@ function setup_chrome {
12
}
13
14
function setup_firefox {
15
- version=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest | grep tag_name | cut -d '"' -f 4)
+ #version=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest | grep tag_name | cut -d '"' -f 4)
16
+ # hard-code latest version, since apparently the above `curl` is fucking up in travis
17
+ version="v0.23.0"
18
url="https://github.com/mozilla/geckodriver/releases/download/${version}/geckodriver-${version}-linux64.tar.gz"
19
wget -O /tmp/geckodriver.tar.gz ${url}
20
sudo tar -xvf /tmp/geckodriver.tar.gz -C /usr/local/bin/
0 commit comments