Codebase list debian-goodies / 1ebc62b
debmany: Use curl --location to support redirects (Closes: #679225) Axel Beckert 9 years ago
2 changed file(s) with 4 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
1414 - Use 2x dpkg instead of dpkg-architecture (Closes: #665880)
1515 - Don't read architecture list again for each package to check (much
1616 faster now, thanks to Jakub Wilk for the idea!)
17 * [debmany]
18 - Use curl --location to support redirects (Closes: #679225)
1719 * Bump debhelper compatibility to 9 to be able to use some more recent
1820 features. Update versioned debhelper build-dependency accordingly.
1921 * Revamp debian/rules
2929 curdir=`pwd`
3030
3131 # Version of debmany
32 version=1.4
32 version=1.5
3333
3434 error()
3535 {
328328 fi
329329 # download the package
330330 debug "Mode3: Start download using curl" # comment
331 curl "$url" >"$file" || error "Failed to download '$url' to '$file'."
331 curl --location "$url" >"$file" || error "Failed to download '$url' to '$file'."
332332 status=repos-curl
333333 fi
334334 fi