dotfiles/recipes/elixir

19 lines
382 B
Text
Raw Normal View History

2020-06-25 01:31:00 +00:00
#!/bin/bash
# Description: The Elixir programming language
set -e
case $_PLATFORM in
darwin)
_brew elixir
;;
*)
_recipe _apt
_apt_source "deb https://packages.erlang-solutions.com/ubuntu $(lsb_release -cs) contrib"
_apt esl-erlang
_apt elixir
;;
esac
_run "[elixir] Installing / updating hex" mix local.hex --force