File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 77
77
command : |
78
78
ls -alh /tmp/workspace
79
79
80
- CIRCLE_TAG="v0.4.0 "
80
+ CIRCLE_TAG="v0.4.1 "
81
81
82
82
go get github.com/github-release/github-release
83
83
Original file line number Diff line number Diff line change @@ -654,11 +654,20 @@ fn main() {
654
654
655
655
let mut stdout = stdout ( ) ;
656
656
657
+ // get dynamic res list zip
657
658
let url = resources. octool_config [ "octool_latest_dyn_res_list_url" ]
658
659
. as_str ( )
659
660
. expect ( "getting url from config" ) ;
660
- write ! ( stdout, "{}\n " , & url) . unwrap ( ) ;
661
- res:: curl_file ( & url, & working_dir. join ( "tool_config_files/dyn_res_list.zip" ) ) . expect ( "getting res zip" ) ;
661
+ let zip_path = & working_dir. join ( "tool_config_files/dyn_res_list.zip" ) ;
662
+ res:: curl_file ( & url, & zip_path) . expect ( "getting dynamic res list" ) ;
663
+
664
+ // unzip dynamic res list
665
+ let z_file = File :: open ( & zip_path) . expect ( "opening zip file" ) ;
666
+ let mut z_archive = zip:: ZipArchive :: new ( z_file) . expect ( "creating archive" ) ;
667
+ match z_archive. extract ( & working_dir. join ( "tool_config_files" ) ) {
668
+ Ok ( _) => ( ) , // leave zip file in place
669
+ Err ( e) => panic ! ( "{:?}" , e) ,
670
+ }
662
671
663
672
//load config_differences
664
673
resources. config_differences =
Original file line number Diff line number Diff line change 1
1
{
2
- "octool_version" : " v0.4.0 2022-06-09 " ,
2
+ "octool_version" : " v0.4.1 2022-06-12 " ,
3
3
"octool_releases_url" : " https://github.com/rusty-bits/octool/releases" ,
4
4
"octool_latest_config_url" : " https://raw.githubusercontent.com/rusty-bits/octool/main/tool_config_files/octool_config.json" ,
5
5
"octool_latest_dyn_res_list_url" : " https://raw.githubusercontent.com/rusty-bits/octool/main/tool_config_files/dyn_res_list.zip" ,
You can’t perform that action at this time.
0 commit comments