From: Rudolf Polzer Date: Wed, 22 Dec 2010 22:34:08 +0000 (+0100) Subject: instead, exclude background_l2 from that hashing stuff X-Git-Tag: xonotic-v0.1.0preview X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=refs%2Ftags%2Fxonotic-v0.1.0preview;hp=fbde4c1592b2f7583f80663c7fbb25db94848c67 instead, exclude background_l2 from that hashing stuff --- diff --git a/misc/tools/cached-converter.sh b/misc/tools/cached-converter.sh index 517ad982..06433d08 100755 --- a/misc/tools/cached-converter.sh +++ b/misc/tools/cached-converter.sh @@ -49,7 +49,15 @@ cached() if [ x"$infile1/../$infile2" = x"$lastinfiles" ]; then sum=$lastinfileshash else - if [ -n "$git_src_repo" ]; then + evil=false + for infile in "$infile1" "$infile2"; do + case "$infile" in + */background_l2.tga) + evil=true + ;; + esac + done + if [ -n "$git_src_repo" ] && ! $evil; then sum=`( cd "$git_src_repo"; git rev-parse --revs-only HEAD:"${infile1#./}" | grep . ) || git hash-object "$infile1"` if [ -n "$infile2" ]; then sum=$sum`( cd "$git_src_repo"; git rev-parse --revs-only HEAD:"${infile2#./}" | grep . ) || git hash-object "$infile2"`