Revision 76a6d6ae
Added by Scott Ullrich over 14 years ago
etc/inc/pkg-utils.inc | ||
---|---|---|
427 | 427 |
$base_url = substr($base_url, 0, -1); |
428 | 428 |
$static_output .= "\n" . str_repeat(" ", $dependlevel * 2) . $pkgname . " "; |
429 | 429 |
$fetchto = "{$g['tmp_path']}/apkg_{$filename}"; |
430 |
$static_output .= "\n" . str_repeat(" ", $dependlevel * 2 + 1) . "Trying to download {$base_url}/{$filename} ... ";
|
|
430 |
$static_output .= "\n" . str_repeat(" ", $dependlevel * 2 + 1) . "Downloading {$base_url}/{$filename} ... ";
|
|
431 | 431 |
if (download_file_with_progress_bar("{$base_url}/{$filename}", $fetchto) !== true) { |
432 | 432 |
if ($base_url != $priv_url && download_file_with_progress_bar("{$priv_url}/{$filename}", $fetchto) !== true) { |
433 | 433 |
$static_output .= " could not download from there or {$priv_url}/{$filename}.\n"; |
Also available in: Unified diff
s/Trying to download/Downloading