* Missed a path when requiring that all paths end with / - this caused -U not to
work (it was downloading files as .package-name) at all.
This commit is contained in:
parent
9e3a185345
commit
74e8b28fc3
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ char *_alpm_fetch_pkgurl(char *target)
|
|||
alpm_list_t *servers = alpm_list_add(NULL, server);
|
||||
alpm_list_t *files = alpm_list_add(NULL, filename);
|
||||
|
||||
if(_alpm_downloadfiles(servers, ".", files)) {
|
||||
if(_alpm_downloadfiles(servers, "./", files)) {
|
||||
_alpm_log(PM_LOG_WARNING, _("failed to download %s"), target);
|
||||
return(NULL);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue