return error
parent
055cbf0e6f
commit
d0cd67efbc
|
@ -3,7 +3,6 @@ package main
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"log"
|
|
||||||
|
|
||||||
"github.com/mattn/go-mastodon"
|
"github.com/mattn/go-mastodon"
|
||||||
"github.com/urfave/cli"
|
"github.com/urfave/cli"
|
||||||
|
@ -15,7 +14,7 @@ func cmdToot(c *cli.Context) error {
|
||||||
if ff != "" {
|
if ff != "" {
|
||||||
text, err := readFile(ff)
|
text, err := readFile(ff)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
toot = string(text)
|
toot = string(text)
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue