diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-01-13 09:10:16 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-01-13 09:10:16 +0000 |
commit | bbbaa94c1851483446bd23732ce7bd1e47796220 (patch) | |
tree | f857ac4495776d673fbe9e925dcac2690e592e4d /update-hooks.sh | |
parent | ac00b9e1359f32d50184f9e73c7568fcc5101d1c (diff) | |
download | mfashby.net-bbbaa94c1851483446bd23732ce7bd1e47796220.tar.gz mfashby.net-bbbaa94c1851483446bd23732ce7bd1e47796220.tar.bz2 mfashby.net-bbbaa94c1851483446bd23732ce7bd1e47796220.tar.xz mfashby.net-bbbaa94c1851483446bd23732ce7bd1e47796220.zip |
Removed git LFS support
Diffstat (limited to 'update-hooks.sh')
-rwxr-xr-x | update-hooks.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/update-hooks.sh b/update-hooks.sh index a37c390..b3a3222 100755 --- a/update-hooks.sh +++ b/update-hooks.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash ## Configure git hooks -git lfs install +touch .git/hooks/pre-push +chmod +x .git/hooks/pre-push grep -qxF './deploy.sh' .git/hooks/pre-push || echo './deploy.sh' >> .git/hooks/pre-push |