elm/bin/install-elm-format
2017-10-10 21:53:47 -04:00

25 lines
605 B
Bash
Executable file

#!/usr/bin/env bash
OS=$(
case $(uname) in
(Darwin*)
echo "mac";;
(Linux*)
echo "linux";;
(Windows*)
echo "windows";;
(MINGW*)
echo "windows";;
(*)
echo "linux";;
esac)
if [ "$OS" == "windows" ]; then
URL=https://github.com/avh4/elm-format/releases/download/0.6.1-alpha/elm-format-0.18-0.6.1-alpha-win-i386.zip
curl -L $URL | funzip > bin/elm-format
else
URL=https://github.com/avh4/elm-format/releases/download/0.6.1-alpha/elm-format-0.18-0.6.1-alpha-$OS-x64.tgz
curl -L $URL | tar -xvzO > bin/elm-format
fi
chmod u+x bin/elm-format