File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ use std::str::FromStr;
66
77use crate :: release:: { bootstrap_llvm, produce_install_only_stripped} ;
88use {
9- crate :: release:: { produce_install_only , RELEASE_TRIPLES } ,
10- anyhow:: { anyhow , Result } ,
9+ crate :: release:: { RELEASE_TRIPLES , produce_install_only } ,
10+ anyhow:: { Result , anyhow } ,
1111 bytes:: Bytes ,
1212 clap:: ArgMatches ,
1313 futures:: StreamExt ,
1414 octocrab:: {
15+ Octocrab , OctocrabBuilder ,
1516 models:: { repos:: Release , workflows:: WorkflowListArtifact } ,
1617 params:: actions:: ArchiveFormat ,
17- Octocrab , OctocrabBuilder ,
1818 } ,
1919 rayon:: prelude:: * ,
2020 sha2:: { Digest , Sha256 } ,
@@ -266,6 +266,7 @@ pub async fn command_fetch_release_distributions(args: &ArgMatches) -> Result<()
266266
267267 let dest_path = dest_dir. join ( & name) ;
268268 let mut buf = vec ! [ ] ;
269+
269270 zf. read_to_end ( & mut buf) ?;
270271 std:: fs:: write ( & dest_path, & buf) ?;
271272
You can’t perform that action at this time.
0 commit comments