From 886b1f450e9017ddc75526f87c339a4830068303 Mon Sep 17 00:00:00 2001 From: iamsm3g Date: Mon, 17 Oct 2022 16:55:47 +0900 Subject: [PATCH] fix say command not found --- git-secrets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-secrets b/git-secrets index 11be153..3e5e57a 100755 --- a/git-secrets +++ b/git-secrets @@ -205,7 +205,7 @@ install_hook() { echo "#!/usr/bin/env bash" > "${dest}" echo "git secrets --${cmd} -- \"\$@\"" >> "${dest}" chmod +x "${dest}" - say "$(tput setaf 2)✓$(tput sgr 0) Installed ${hook} hook to ${dest}" + echo "$(tput setaf 2)✓$(tput sgr 0) Installed ${hook} hook to ${dest}" } install_all_hooks() {