cli: Don't output errors to stdout
This commit is contained in:
		
							parent
							
								
									651522cbaa
								
							
						
					
					
						commit
						a80e98dc05
					
				| @ -35,7 +35,7 @@ func RunApp(app *cli.App) { | |||||||
| 		if os.Getenv("LOTUS_DEV") != "" { | 		if os.Getenv("LOTUS_DEV") != "" { | ||||||
| 			log.Warnf("%+v", err) | 			log.Warnf("%+v", err) | ||||||
| 		} else { | 		} else { | ||||||
| 			fmt.Printf("ERROR: %s\n\n", err) | 			fmt.Fprintf(os.Stderr, "ERROR: %s\n\n", err) // nolint:errcheck
 | ||||||
| 		} | 		} | ||||||
| 		var phe *PrintHelpErr | 		var phe *PrintHelpErr | ||||||
| 		if xerrors.As(err, &phe) { | 		if xerrors.As(err, &phe) { | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user