From bbb80ab93ad21980c79b3ac40fa8a05fb62f401e Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Tue, 13 Jun 2017 03:55:38 +0200 Subject: [PATCH] Travis: update shfmt to 1.3.1 (#2949) --- .ci/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/install.sh b/.ci/install.sh index fd9ffae5e..a1e8c1cf8 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -55,8 +55,8 @@ else fi # install shfmt -SHFMT_URL="https://github.com/mvdan/sh/releases/download/v1.3.0/shfmt_v1.3.0_linux_amd64" -if [ "$(shfmt --version)" != "v1.3.0" ]; then +SHFMT_URL="https://github.com/mvdan/sh/releases/download/v1.3.1/shfmt_v1.3.1_linux_amd64" +if [ "$(shfmt --version)" != "v1.3.1" ]; then curl -sSL "${SHFMT_URL}" -o "${HOME}/bin/shfmt" chmod +x "${HOME}/bin/shfmt" else