Sha256: 56633194c2c053982a47a5051709dea8bda2243c94a7e5efa2ff5d9c2837d0c7
Contents?: true
Size: 597 Bytes
Versions: 74
Compression:
Stored size: 597 Bytes
Contents
#!/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.7.0-exp/elm-format-0.18-0.7.0-exp-win-i386.zip curl -L $URL | funzip > bin/elm-format else URL=https://github.com/avh4/elm-format/releases/download/0.7.0-exp/elm-format-0.18-0.7.0-exp-$OS-x64.tgz curl -L $URL | tar -xvzO > bin/elm-format fi chmod u+x bin/elm-format
Version data entries
74 entries across 74 versions & 1 rubygems