mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-22 03:00:05 +00:00
22 lines
453 B
Bash
22 lines
453 B
Bash
#!/bin/bash
|
|
# Description: The Elixir programming language
|
|
set -e
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_brew elixir
|
|
;;
|
|
arch)
|
|
_recipe _arch
|
|
_pacman elixir
|
|
;;
|
|
debian)
|
|
_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
|