We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f8371b commit 4e73be9Copy full SHA for 4e73be9
1 file changed
src/main.rs
@@ -282,7 +282,9 @@ async fn get_artifacts_for_revision(
282
if count > 1 {
283
log::warn!("more than one `result` found for specified push");
284
} else if count == 0 {
285
- log::error!("no `results` found; does the push you specified exist?");
+ log::error!(
286
+ "no `results` found; does the push you specified exist at the specified project?"
287
+ );
288
return Err(AlreadyReportedToCommandLine);
289
}
290
let RevisionResult { id: push_id } = results.pop().unwrap();
0 commit comments