File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -137,10 +137,10 @@ fn run() -> Result<()> {
137137 } ) ?;
138138 } else if let Some ( matches) = matches. subcommand_matches ( "prepare-submission" ) {
139139 let submission_path = matches. value_of ( "submission-path" ) . unwrap ( ) ;
140- let submission_path = dbg ! ( Path :: new( submission_path) ) ;
140+ let submission_path = Path :: new ( submission_path) ;
141141
142142 let output_path = matches. value_of ( "output-path" ) . unwrap ( ) ;
143- let output_path = dbg ! ( Path :: new( output_path) ) ;
143+ let output_path = Path :: new ( output_path) ;
144144
145145 let tmc_params_values = matches. values_of ( "tmc-param" ) . unwrap_or_default ( ) ;
146146 let mut tmc_params_grouped = HashMap :: new ( ) ;
@@ -172,9 +172,9 @@ fn run() -> Result<()> {
172172 }
173173
174174 let clone_path = matches. value_of ( "clone-path" ) . unwrap ( ) ;
175- let clone_path = dbg ! ( Path :: new( clone_path) ) ;
175+ let clone_path = Path :: new ( clone_path) ;
176176
177- let output_zip = dbg ! ( matches. is_present( "output-zip" ) ) ;
177+ let output_zip = matches. is_present ( "output-zip" ) ;
178178
179179 let top_level_dir_name = matches. value_of ( "top-level-dir-name" ) ;
180180 let top_level_dir_name = top_level_dir_name. map ( str:: to_string) ;
You can’t perform that action at this time.
0 commit comments