From 3b58bbdf02ef1be19c7c27921bac21464ce7d3be Mon Sep 17 00:00:00 2001 From: Ankanna Date: Thu, 14 Jun 2018 10:06:48 +0530 Subject: [PATCH] Update CONTRIBUTING.md Changed the .scripts path while creating symbolic links to setting up the git hooks --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a9ad7aa0f..be95f7fa4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,8 +11,8 @@ We strongly recommend that you set up these git hooks on your machine by: ```sh # sh # in the project root, run: -ln -sf ../../.scripts/pre-commit .git/hooks/pre-commit -ln -sf ../../.scripts/post-commit .git/hooks/post-commit +ln -sf .scripts/pre-commit .git/hooks/pre-commit +ln -sf .scripts/post-commit .git/hooks/post-commit ``` > **Note that our CI will fail your PR if you dont run `mix format` in the project