16 lines
403 B
Bash
16 lines
403 B
Bash
#!/bin/sh
|
|
# File: /e:/Workspace/Fmodel/Exports/.scripts/setup-precommit.sh
|
|
|
|
# Create the .git/hooks directory if it doesn't exist
|
|
mkdir -p .git/hooks
|
|
|
|
# Write the pre-commit hook script
|
|
cat <<'EOF' >.git/hooks/pre-commit
|
|
#!/bin/sh
|
|
sh ./.scripts/lfs.sh
|
|
EOF
|
|
|
|
# Make the pre-commit hook script executable
|
|
chmod +x .git/hooks/pre-commit
|
|
|
|
echo "Pre-commit hook has been set up to run 'sh ./.scripts/lfs.sh'"
|