From ce4b0a44b92e298574e67cdc5b65588165936478 Mon Sep 17 00:00:00 2001 From: Jared Ballou Date: Tue, 19 Jan 2016 03:56:13 -0500 Subject: [PATCH] More hash updates --- functions/github_hash.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/functions/github_hash.sh b/functions/github_hash.sh index 2362e0f1e..ce6afcdbe 100755 --- a/functions/github_hash.sh +++ b/functions/github_hash.sh @@ -71,12 +71,11 @@ fn_check_github_files(){ repofile=$(echo $file | sed -e "s|${1}[/]*||g") githash=$(grep "^$repofile " $manifest 2>/dev/null| cut -d" " -f2) if [ "${githash}" == "" ]; then - echo "Can't find ${repofile} in git!" + continue + #echo "Can't find ${repofile} in git!" elif [ "${myhash}" != "${githash}" ]; then #echo "Would fetch ${repofile}: have ${myhash}, expected ${githash}" fn_getgithubfile "${file}" 0 "${repofile}" 1 - else - #echo "${repofile} is OK" fi fi done