From 30bf2015cb54f577a5b115b8864ae6c534a44ae5 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Tue, 14 Sep 2021 09:42:08 +0200 Subject: [PATCH] GitHook install : update create symlink message to add target path --- .make/git-hooks/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.make/git-hooks/install.php b/.make/git-hooks/install.php index 858a27827..41c82a794 100644 --- a/.make/git-hooks/install.php +++ b/.make/git-hooks/install.php @@ -19,7 +19,7 @@ foreach ($aHooks as $sSourceHookFileName) { echo "OK !\n"; } - echo "Creating symlink for hook..."; + echo "Creating symlink for hook in $sTargetHookPath..."; symlink($sSourceHookPath, $sTargetHookPath); echo "OK !\n"; }