@@ -13,8 +13,8 @@ use std::path::{Path,PathBuf};
13
13
14
14
use cargo:: core:: shell:: Verbosity ;
15
15
use cargo:: execute_main_without_stdin;
16
- use cargo:: util:: ChainError ;
17
- use cargo:: util:: { self , CliResult , lev_distance , Config , human , CargoResult } ;
16
+ use cargo:: util:: { self , CliResult , lev_distance , Config , human } ;
17
+ use cargo:: util:: CliError ;
18
18
use cargo:: util:: process_builder:: process;
19
19
20
20
#[ derive( RustcDecodable ) ]
@@ -199,7 +199,7 @@ fn find_closest(config: &Config, cmd: &str) -> Option<String> {
199
199
200
200
fn execute_subcommand ( config : & Config ,
201
201
cmd : & str ,
202
- args : & [ String ] ) -> CargoResult < ( ) > {
202
+ args : & [ String ] ) -> CliResult < ( ) > {
203
203
let command_exe = format ! ( "cargo-{}{}" , cmd, env:: consts:: EXE_SUFFIX ) ;
204
204
let path = search_directories ( config)
205
205
. iter ( )
@@ -212,13 +212,19 @@ fn execute_subcommand(config: &Config,
212
212
Some ( closest) => format ! ( "no such subcommand\n \n \t \
213
213
Did you mean `{}`?\n ", closest) ,
214
214
None => "no such subcommand" . to_string ( )
215
- } ) )
215
+ } ) . into ( ) )
216
216
}
217
217
} ;
218
- try!( util:: process ( & command) . args ( & args[ 1 ..] ) . exec ( ) . chain_error ( || {
219
- human ( format ! ( "third party subcommand `{}` exited unsuccessfully" , command_exe) )
220
- } ) ) ;
221
- Ok ( ( ) )
218
+ let err = match util:: process ( & command) . args ( & args[ 1 ..] ) . exec ( ) {
219
+ Ok ( ( ) ) => return Ok ( ( ) ) ,
220
+ Err ( e) => e,
221
+ } ;
222
+
223
+ if let Some ( code) = err. exit . as_ref ( ) . and_then ( |c| c. code ( ) ) {
224
+ Err ( CliError :: new ( "" , code) )
225
+ } else {
226
+ Err ( CliError :: from_error ( err, 101 ) )
227
+ }
222
228
}
223
229
224
230
/// List all runnable commands. find_command should always succeed
0 commit comments