Skip to content

Commit 57b3ad8

Browse files
authored
Hard-code latest geckodriver version (EFForg#16987)
1 parent f11c1b6 commit 57b3ad8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/setup_travis.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ function setup_chrome {
1212
}
1313

1414
function setup_firefox {
15-
version=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest | grep tag_name | cut -d '"' -f 4)
15+
#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"
1618
url="https://github.com/mozilla/geckodriver/releases/download/${version}/geckodriver-${version}-linux64.tar.gz"
1719
wget -O /tmp/geckodriver.tar.gz ${url}
1820
sudo tar -xvf /tmp/geckodriver.tar.gz -C /usr/local/bin/

0 commit comments

Comments
 (0)