mirror of
https://review.haiku-os.org/haiku
synced 2025-01-21 22:04:49 +01:00
pkgman refresh: Include the repository name in error message
This commit is contained in:
parent
bab6caf3e0
commit
e2678ec041
@ -101,8 +101,10 @@ RefreshCommand::Execute(int argc, const char* const* argv)
|
||||
|
||||
BRefreshRepositoryRequest refreshRequest(context, repoConfig);
|
||||
result = refreshRequest.Process();
|
||||
if (result != B_OK)
|
||||
DIE(result, "request for refreshing repository failed");
|
||||
if (result != B_OK) {
|
||||
DIE(result, "request for refreshing repository \"%s\" failed",
|
||||
repoName.String());
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user