File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,8 @@ static int Main(string[] args)
467
467
468
468
process . Start ( ) ;
469
469
process . WaitForExit ( ) ;
470
- return process . ExitCode ;
470
+ if ( process . ExitCode != 0 )
471
+ Environment . Exit ( process . ExitCode ) ;
471
472
}
472
473
else
473
474
{
@@ -515,7 +516,8 @@ static int Main(string[] args)
515
516
516
517
process . Start ( ) ;
517
518
process . WaitForExit ( ) ;
518
- return process . ExitCode ;
519
+ if ( process . ExitCode != 0 )
520
+ Environment . Exit ( process . ExitCode ) ;
519
521
}
520
522
}
521
523
Original file line number Diff line number Diff line change 2
2
"profiles" : {
3
3
"Cljr" : {
4
4
"commandName" : " Project" ,
5
- "commandLineArgs" : " -T:deps tree"
5
+ "commandLineArgs" : " -X:test" ,
6
+ "workingDirectory" : " C:\\ work\\ temp\\ testretcode"
6
7
}
7
8
}
8
9
}
Original file line number Diff line number Diff line change 1
- clojure.main @args
1
+ clojure.main @args ; exit $LASTEXITCODE
You can’t perform that action at this time.
0 commit comments