# HG changeset patch # User Rob Landley # Date 1367299672 18000 # Node ID e8d846fb56eb6642c848978cf7de562c690b4ff5 # Parent 3cbf1abde44a47a0e5b4248856697aa58f839a2a Make sha1-for-source.txt only test *.patch files out of sources/patches so stupid ".orig" files don't cause perpetual re-extraction. diff -r 3cbf1abde44a -r e8d846fb56eb sources/download_functions.sh --- a/sources/download_functions.sh Mon Apr 29 22:03:14 2013 -0500 +++ b/sources/download_functions.sh Tue Apr 30 00:27:52 2013 -0500 @@ -112,7 +112,7 @@ SHALIST=$(cat "$SHA1FILE" 2> /dev/null) if [ ! -z "$SHALIST" ] then - for i in "$SHA1TAR" $(sha1file "$PATCHDIR/$PACKAGE"-* 2>/dev/null) + for i in "$SHA1TAR" $(sha1file "$PATCHDIR/$PACKAGE"-*.patch 2>/dev/null) do # Is this sha1 in the file? if [ -z "$(echo "$SHALIST" | grep "$i")" ]