From f5ec3e55a773cfa4dad5b8a514506c0d558ed65c Mon Sep 17 00:00:00 2001 From: Lars Schneider Date: Thu, 6 Jun 2019 14:55:23 +0200 Subject: [PATCH] remove unnessary variable --- git-find-large-files | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-find-large-files b/git-find-large-files index 28b83ad..c99d6d7 100755 --- a/git-find-large-files +++ b/git-find-large-files @@ -66,8 +66,8 @@ for OBJ in $OBJECTS; do SHA=$(echo $OBJ | cut -f 2 -d ' ') # find the objects location in the repository tree - LOCATION=$($search $look_b $SHA "$TMP_DIR/objects" | sed "s/$SHA //") - if $search $look_b $SHA "$TMP_DIR/objects.1" >/dev/null; then + LOCATION=$($search $SHA "$TMP_DIR/objects" | sed "s/$SHA //") + if $search $SHA "$TMP_DIR/objects.1" >/dev/null; then # Object is in the head revision HEAD="Present" elif [ -e $LOCATION ]; then