From 1fab6e69c52236aabc3735ce8643ad18f551d071 Mon Sep 17 00:00:00 2001 From: Adam Brown Date: Wed, 14 Sep 2022 17:48:38 +0100 Subject: [PATCH] adding origin of bash script url --- tools/validate_lfs.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/validate_lfs.sh b/tools/validate_lfs.sh index 3777a009f5..ce121057b6 100755 --- a/tools/validate_lfs.sh +++ b/tools/validate_lfs.sh @@ -1,3 +1,5 @@ +#! /bin/bash + # # Copyright (c) 2022 New Vector Ltd # @@ -13,19 +15,15 @@ # See the License for the specific language governing permissions and # limitations under the License. # - -#! /bin/bash +# Based on https://cashapp.github.io/paparazzi/#git-lfs # Compare the output of `git ls-files ':(attr:filter=lfs)'` against `git lfs ls-files` # If there's no diff we assume the files have been committed using git lfs diff <(git ls-files ':(attr:filter=lfs)' | sort) <(git lfs ls-files -n | sort) >/dev/null ret=$? - if [[ $ret -ne 0 ]]; then echo >&2 "Detected files committed without using Git LFS." echo >&2 "Install git lfs (eg brew install git-lfs) and run 'git lfs install --local' within the root repository directory and re-commit your files." exit 1 fi - -