1
0
mirror of synced 2026-01-07 00:01:39 -05:00

Update post-merge

This commit is contained in:
Kevin Heis
2021-07-28 11:13:43 -07:00
committed by GitHub
parent e059e572a9
commit 46cc6ab2a2

View File

@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.\n"; exit 2; }
git lfs post-merge "$@"
[ -n "$CI" ] && exit 0
command -v git-lfs >/dev/null 2>&1 && git lfs post-merge "$@" || { echo >&2 "\nGitHub Docs requires Git LFS but 'git-lfs' was not found on your path.\nLearn how to install Git LFS at <https://git.io/JBCId>.\n"; }