corrected my typo in trace
This commit is contained in:
parent
585794e115
commit
9c43643abe
1 changed files with 2 additions and 2 deletions
|
@ -690,10 +690,10 @@ get_sources() { # Download file, write name to MISSING_FILES.DMP if
|
||||||
|
|
||||||
if [ ! -f $FILE ] ; then
|
if [ ! -f $FILE ] ; then
|
||||||
wget $URL1 || wget $URL2 || (echo "${RED}$FILE not found on the servers${OFF}" &&
|
wget $URL1 || wget $URL2 || (echo "${RED}$FILE not found on the servers${OFF}" &&
|
||||||
echo "$FILE not found on the servers 1" >> MISSING_FILES.DMP )
|
echo "$FILE not found on the servers" >> MISSING_FILES.DMP )
|
||||||
elif [[ "$NOMD5" != "1" ]] && ! echo "$MD5" | md5sum -c - ; then
|
elif [[ "$NOMD5" != "1" ]] && ! echo "$MD5" | md5sum -c - ; then
|
||||||
wget -N $URL1 || wget -N $URL2 || ( echo "${RED}$FILE not found on the servers${OFF}" &&
|
wget -N $URL1 || wget -N $URL2 || ( echo "${RED}$FILE not found on the servers${OFF}" &&
|
||||||
echo "$FILE not found on the servers 2" >> MISSING_FILES.DMP )
|
echo "$FILE not found on the servers" >> MISSING_FILES.DMP )
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$NOMD5" != "1" ]] && ! echo "$MD5" | md5sum -c - ; then
|
if [[ "$NOMD5" != "1" ]] && ! echo "$MD5" | md5sum -c - ; then
|
||||||
|
|
Reference in a new issue