mirror of
https://github.com/fiatjaf/nak.git
synced 2026-02-04 07:54:31 +00:00
remove redundant if err != nil in main
This commit is contained in:
committed by
fiatjaf_
parent
49345333c4
commit
d5ab34bb2f
8
main.go
8
main.go
@@ -127,9 +127,7 @@ func main() {
|
|||||||
// a megahack to enable this curl command proxy
|
// a megahack to enable this curl command proxy
|
||||||
if len(os.Args) > 2 && os.Args[1] == "curl" {
|
if len(os.Args) > 2 && os.Args[1] == "curl" {
|
||||||
if err := realCurl(); err != nil {
|
if err := realCurl(); err != nil {
|
||||||
if err != nil {
|
log(color.YellowString(err.Error()) + "\n")
|
||||||
log(color.YellowString(err.Error()) + "\n")
|
|
||||||
}
|
|
||||||
colors.reset()
|
colors.reset()
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
@@ -137,9 +135,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if err := app.Run(context.Background(), os.Args); err != nil {
|
if err := app.Run(context.Background(), os.Args); err != nil {
|
||||||
if err != nil {
|
log("%s\n", color.RedString(err.Error()))
|
||||||
log("%s\n", color.RedString(err.Error()))
|
|
||||||
}
|
|
||||||
colors.reset()
|
colors.reset()
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user