temp bash source fix, elm install scrip

This commit is contained in:
Andrejus
2020-07-11 16:40:24 +01:00
parent 57eb54e2d5
commit 40d057bcf9
3 changed files with 13 additions and 1 deletions

9
install/17-elm.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
if not_installed "elm"; then
curl -L -o elm.gz https://github.com/elm/compiler/releases/download/0.19.1/binary-for-linux-64-bit.gz
gunzip elm.gz
chmod +x elm
sudo mv elm /usr/local/bin/
fi