File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -404,13 +404,13 @@ fn get_format(
404404 Some ( "terse" ) => OutputFormat :: Terse ,
405405 Some ( "json" ) => {
406406 if !allow_unstable {
407- return Err ( "The \" json\" format is only accepted on the nightly compiler" . into ( ) ) ;
407+ return Err ( "The \" json\" format is only accepted on the nightly compiler with -Z unstable-options " . into ( ) ) ;
408408 }
409409 OutputFormat :: Json
410410 }
411411 Some ( "junit" ) => {
412412 if !allow_unstable {
413- return Err ( "The \" junit\" format is only accepted on the nightly compiler" . into ( ) ) ;
413+ return Err ( "The \" junit\" format is only accepted on the nightly compiler with -Z unstable-options " . into ( ) ) ;
414414 }
415415 OutputFormat :: Junit
416416 }
Original file line number Diff line number Diff line change 1- error: The "json" format is only accepted on the nightly compiler
1+ error: The "json" format is only accepted on the nightly compiler with -Z unstable-options
You can’t perform that action at this time.
0 commit comments