From 6d9bcd5e65c1011cf6ba4dd3371d68debe0470b8 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 5 Jul 2023 00:03:32 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(Makefile):=20make=20pre-co?= =?UTF-8?q?mmit=20hook=20executable=20The=20pre-commit=20hook=20in=20the?= =?UTF-8?q?=20.githooks=20directory=20was=20not=20executable,=20causing=20?= =?UTF-8?q?it=20to=20not=20be=20triggered.=20This=20commit=20makes=20the?= =?UTF-8?q?=20pre-commit=20hook=20executable=20by=20adding=20the=20`chmod?= =?UTF-8?q?=20+x`=20command=20to=20set=20the=20executable=20permission=20o?= =?UTF-8?q?n=20the=20pre-commit=20hook=20file.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index bfed91f37..79e27833e 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ all: help init: @echo 'Installing pre-commit hooks' git config core.hooksPath .githooks + @echo 'Making pre-commit hook executable' + chmod +x .githooks/pre-commit @echo 'Installing backend dependencies' make install_backend @echo 'Installing frontend dependencies'