1
0
mirror of synced 2026-01-25 20:06:44 +00:00

typo: chmod +x instead of -x for post-checkout script (#2006)

This commit is contained in:
Larry Masinter
2025-02-03 12:06:44 -08:00
committed by GitHub
parent 40d18fff6e
commit 1e47741a71

View File

@@ -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