From: Arran Cudbard-Bell Date: Wed, 25 Mar 2020 20:24:22 +0000 (-0600) Subject: scripts: Override fetchexclude when we're pulling from within the install_deps.sh... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a973487c98fac37f640da7783cda83560c536bc8;p=thirdparty%2Ffreeradius-server.git scripts: Override fetchexclude when we're pulling from within the install_deps.sh script --- diff --git a/scripts/osx/install_deps.sh b/scripts/osx/install_deps.sh index c3bd25c853f..f52794cc021 100755 --- a/scripts/osx/install_deps.sh +++ b/scripts/osx/install_deps.sh @@ -79,12 +79,12 @@ fi # # These are stored on GitHub in git-lfs. # -if ! git lfs fetch > /dev/null; then +if ! git -c 'lfs.fetchexclude=' -c 'lfs.fetchinclude=scripts/osx/deps/*' lfs fetch; then echo "Failed retrieving proprietary dependencies from git-lfs" 1>&2 exit 1 fi -if ! git lfs pull; then +if ! git -c 'lfs.fetchexclude=' -c 'lfs.fetchinclude=scripts/osx/deps/*' lfs pull; then echo "Failed updating dependencies from git-lfs" 1>&2 exit 1 fi