Skip to content

Commit 4e73be9

Browse files
diag: hint that project might be wrong for no-results-found error (#46)
1 parent 3f8371b commit 4e73be9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,9 @@ async fn get_artifacts_for_revision(
282282
if count > 1 {
283283
log::warn!("more than one `result` found for specified push");
284284
} else if count == 0 {
285-
log::error!("no `results` found; does the push you specified exist?");
285+
log::error!(
286+
"no `results` found; does the push you specified exist at the specified project?"
287+
);
286288
return Err(AlreadyReportedToCommandLine);
287289
}
288290
let RevisionResult { id: push_id } = results.pop().unwrap();

0 commit comments

Comments
 (0)