mirror of
https://github.com/correl/elm.git
synced 2024-11-23 19:19:50 +00:00
Standardize line endings
This commit is contained in:
parent
44b1cde071
commit
59bb15e0c1
2 changed files with 26 additions and 25 deletions
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
* text=auto
|
|
@ -1,25 +1,25 @@
|
|||
#!/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
|
||||
#!/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
|
||||
|
|
Loading…
Reference in a new issue