We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bea040b commit b43764dCopy full SHA for b43764d
bin/src/dispatch.rs
@@ -421,6 +421,20 @@ async fn show_artifacts(
421
details,
422
};
423
424
+ if artifact_metadata.target
425
+ != format!(
426
+ "{}-{}-{}.tar.gz",
427
+ artifact_metadata.kind,
428
+ artifact_metadata.name,
429
+ artifact_metadata.version
430
+ )
431
+ {
432
+ eprintln!(
433
+ "warning: expected artifact target name to be \
434
+ KIND-NAME-VERSION.tar.gz"
435
+ );
436
+ }
437
+
438
list.push(artifact_info);
439
}
440
0 commit comments