Changed order of download loacations; prefer $SERVER to upstream
This commit is contained in:
parent
c5a416fd4b
commit
296ae694fa
1 changed files with 2 additions and 2 deletions
|
@ -670,8 +670,8 @@ get_sources() { # Download file, write name to MISSING_FILES.DMP if
|
|||
esac
|
||||
|
||||
# Locations
|
||||
URL1=`echo $line | cut -d" " -f1` # Upstream URL
|
||||
URL2=`echo $line | cut -d" " -f2` # Fallback URL
|
||||
URL1=`echo $line | cut -d" " -f2` # Preferred URL
|
||||
URL2=`echo $line | cut -d" " -f1` # Fallback Upstream URL
|
||||
FILE=`basename $URL2` # File name
|
||||
|
||||
# Find the md5 sum for this package.
|
||||
|
|
Reference in a new issue