Skip to content

Commit

Permalink
Rename release_zip to release_precompiled. Fixes elixir-lang#3543
Browse files Browse the repository at this point in the history
  • Loading branch information
c-rack committed Aug 11, 2015
1 parent 790173e commit 99be77a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ INSTALL_DIR = $(INSTALL) -m755 -d
INSTALL_DATA = $(INSTALL) -m644
INSTALL_PROGRAM = $(INSTALL) -m755

.PHONY: install install_man compile erlang elixir build_man build_plt clean_man clean_plt dialyze test clean clean_man docs release_docs release_zip check_erlang_release
.PHONY: install install_man compile erlang elixir build_man build_plt clean_man clean_plt dialyze test clean clean_man docs release_docs release_precompiled check_erlang_release
.NOTPARALLEL: compile

#==> Functions
Expand Down Expand Up @@ -169,10 +169,10 @@ docs_logger: compile ../ex_doc/bin/ex_doc

#==> Release tasks

release_zip: compile
rm -rf v$(VERSION).zip
release_precompiled: compile
rm -rf Precompiled-v$(VERSION).zip
$(MAKE) build_man
zip -9 -r v$(VERSION).zip bin CHANGELOG.md LEGAL lib/*/ebin LICENSE man README.md VERSION
zip -9 -r Precompiled-v$(VERSION).zip bin CHANGELOG.md LEGAL lib/*/ebin LICENSE man README.md VERSION
$(MAKE) clean_man

release_docs: docs
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This document simply outlines the release process:

8. Release new docs with `make release_docs`, copy docs to `docs/stable` if appropriate, and push

9. Release new zip with `make release_zip`, push `Precompiled.zip` to GitHub Releases
9. Release new zip with `make release_precompiled`, push `Precompiled.zip` to GitHub Releases

10. Add the release to `elixir.csv` file in `elixir-lang/elixir-lang.github.com`

Expand Down

0 comments on commit 99be77a

Please sign in to comment.