File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed
Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " chaindev"
3- version = " 0.52.10 "
3+ version = " 0.53.0 "
44edition = " 2021"
5566description = " Powerful development and testing utils for blockchain developers."
Original file line number Diff line number Diff line change @@ -1299,10 +1299,8 @@ where
12991299 let cfg = format ! ( "{repo}/custom.env" ) ;
13001300 let block_itv_cache = format ! ( "{tmpdir}/block_itv" ) ;
13011301
1302- let repo_url = env:: var ( "CHAIN_DEV_EGG_REPO" ) ;
1303- let repo_url = repo_url
1304- . as_deref ( )
1305- . unwrap_or ( "https://github.com/rust-util-collections/EGG" ) ;
1302+ let repo_url = env:: var ( "CHAIN_DEV_EGG_REPO" )
1303+ . c ( d ! ( "The ${{CHAIN_DEV_EGG_REPO}} not set!" ) ) ?;
13061304 let gitcmd = format ! ( "git clone {repo_url} {repo} || exit 1" ) ;
13071305 cmd:: exec_output ( & gitcmd) . c ( d ! ( ) ) ?;
13081306
Original file line number Diff line number Diff line change @@ -754,10 +754,8 @@ where
754754 let cfg = format ! ( "{repo}/custom.env" ) ;
755755 let block_itv_cache = format ! ( "{tmpdir}/block_itv" ) ;
756756
757- let repo_url = env:: var ( "CHAIN_DEV_EGG_REPO" ) ;
758- let repo_url = repo_url
759- . as_deref ( )
760- . unwrap_or ( "https://github.com/rust-util-collections/EGG" ) ;
757+ let repo_url = env:: var ( "CHAIN_DEV_EGG_REPO" )
758+ . c ( d ! ( "The ${{CHAIN_DEV_EGG_REPO}} not set!" ) ) ?;
761759 let gitcmd = format ! ( "git clone {repo_url} {repo} || exit 1" ) ;
762760 cmd:: exec_output ( & gitcmd) . c ( d ! ( ) ) ?;
763761
You can’t perform that action at this time.
0 commit comments