From 1e47741a71fc74a4d1afb0030f79249c786adb79 Mon Sep 17 00:00:00 2001 From: Larry Masinter Date: Mon, 3 Feb 2025 12:06:44 -0800 Subject: [PATCH] typo: chmod +x instead of -x for post-checkout script (#2006) --- scripts/install-repo-checks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-repo-checks.sh b/scripts/install-repo-checks.sh index 8e8a663d..9b52aec7 100755 --- a/scripts/install-repo-checks.sh +++ b/scripts/install-repo-checks.sh @@ -7,7 +7,7 @@ rm -f .git/hooks/post-checkout cp scripts/post-checkout .git/hooks/post-checkout && - chmod -x .git/hooks/post-checkout && + chmod +x .git/hooks/post-checkout && echo copy made: && ls -l .git/hooks/post-checkout && exit 0