From 27f45ec45d0791888e63708c5c342a48d4e7a0f8 Mon Sep 17 00:00:00 2001 From: Igor Shubovych Date: Fri, 25 Dec 2015 12:11:51 +0200 Subject: [PATCH] Remove index mention from Contributing Guidelines --- CONTRIBUTING.md | 2 +- Makefile | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2c56fa560f..af649b83d7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ Contribution are most welcome! All `tldr` pages are stored in Markdown right her ## Setup -When setting up a brand new fork, run `make setup` to install the git pre-commit hook that will rebuild the index every time you commit your changes. You can also rebuild it manually by running `make index`. The script requires Ruby to run. Make sure you have the index in place as we will need it as part of your commit in order to pull in your changes. +When setting up a brand new fork, run `make setup` to install the git pre-commit hook that will check errors in your changes with Markdown linter. ## Guidelines diff --git a/Makefile b/Makefile index 72e126749f..4863bf043d 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,10 @@ default: lint all: setup index index: + @echo "WARNING!" + @echo "Index rebuilding is deprecated." + @echo "You should not do it, unless you understand why you doing this." + @echo @TLDRHOME=`pwd` ./scripts/build_index.rb @echo "Index rebuilt."