Sha256: 1bb0b69d62db89bd98c243a5e075e28837d51d86da21df1f66e487ee283c29dc
Contents?: true
Size: 371 Bytes
Versions: 38
Compression:
Stored size: 371 Bytes
Contents
#!/usr/bin/env bash OS=$( case $(uname) in (Darwin*) echo "mac";; (Linux*) echo "linux";; (Windows*) echo "windows";; (*) echo "linux";; esac) URL=https://github.com/avh4/elm-format/releases/download/0.4.0-alpha/elm-format-0.17-0.4.0-alpha-$OS-x64.tgz curl -L $URL | tar -xvzO > bin/elm-format chmod u+x bin/elm-format
Version data entries
38 entries across 38 versions & 1 rubygems