Skip to content

Commit b3993f1

Browse files
committed
rust: don't fetch install_only archives
We derive them ourselves now. Let's not waste time fetching the data.
1 parent 2f078ce commit b3993f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/github.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ pub async fn command_fetch_release_distributions(args: &ArgMatches) -> Result<()
8383
if matches!(
8484
artifact.name.as_str(),
8585
"pythonbuild" | "sccache" | "toolchain"
86-
) {
86+
) || artifact.name.contains("install-only")
87+
{
8788
continue;
8889
}
8990

0 commit comments

Comments
 (0)