From 1ed3f9a362cdedb02acaf0109c220ce1ac59f177 Mon Sep 17 00:00:00 2001 From: typicode Date: Tue, 3 Jan 2023 08:19:35 +0100 Subject: [PATCH] fix: change message --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2d44eee22..c91ac19f5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,7 @@ export function install(dir = '.husky'): void { // If git command is not found, status is null and we should return. // That's why status value needs to be checked explicitly. if (git(['rev-parse']).status !== 0) { - l(`git must be installed on your machine`) + l(`git command not found, skipping install`) return }