Sha256: 60cf3fdc7496457dd17bc98c8210233057165be048487483a72ac7adeab227ac
Contents?: true
Size: 371 Bytes
Versions: 83
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.6.1-alpha/elm-format-0.18-0.6.1-alpha-$OS-x64.tgz curl -L $URL | tar -xvzO > bin/elm-format chmod u+x bin/elm-format
Version data entries
83 entries across 83 versions & 1 rubygems