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