From 65936913cb4d572827eb7ce36be967fa21679a20 Mon Sep 17 00:00:00 2001 From: Thomas Buckley-Houston Date: Tue, 10 Jul 2018 10:44:34 +0800 Subject: [PATCH] Don't use curl's --fail in setting up Browsh Seems to fail every time --- interfacer/contrib/setup_browsh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfacer/contrib/setup_browsh.sh b/interfacer/contrib/setup_browsh.sh index 5988c23..2f0ddd2 100755 --- a/interfacer/contrib/setup_browsh.sh +++ b/interfacer/contrib/setup_browsh.sh @@ -23,5 +23,5 @@ version=$(echo $line | grep -o '".*"' | cut -d " " -f 2 | sed 's/"//g') base='https://github.com/browsh-org/browsh/releases/download' release_url="$base/v$version/browsh_${version}_linux_amd64" -curl -L -o --fail browsh $release_url +curl -L -o browsh $release_url chmod a+x browsh