Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save masamitsunamioka/12d6abbfbe38674f5b1d0c864a337e8f to your computer and use it in GitHub Desktop.
Save masamitsunamioka/12d6abbfbe38674f5b1d0c864a337e8f to your computer and use it in GitHub Desktop.
Elixir

Elixir

https://elixir-lang.org/install.html

$ git clone https://github.com/elixir-lang/elixir.git

$ cd elixir
$ export RELEASE_VERSION=v1.7.0-rc.1
$ git archive ${RELEASE_VERSION} --prefix=elixir-${RELEASE_VERSION}/ --output=$HOME/work/make/elixir-${RELEASE_VERSION}.tar.xz
$ cd $HOME/work/make/
$ tar -Jxf elixir-${RELEASE_VERSION}.tar.xz
$ cd elixir-${RELEASE_VERSION}

$ make clean test

$ cd ..
$ mv ./elixir-${RELEASE_VERSION} $HOME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment