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(
404
404
Some ( "terse" ) => OutputFormat :: Terse ,
405
405
Some ( "json" ) => {
406
406
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 ( ) ) ;
408
408
}
409
409
OutputFormat :: Json
410
410
}
411
411
Some ( "junit" ) => {
412
412
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 ( ) ) ;
414
414
}
415
415
OutputFormat :: Junit
416
416
}
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