diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-16 16:40:29 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-16 16:40:29 -0400 |
commit | fb3826cee5a4c23cc1135523e267fc3801e8533a (patch) | |
tree | 9b659cfd7cc5e2e8b6682bc8dcddc2582044e774 /aerc.go | |
parent | ff51625513ca45da78ac11b47fc528a280ecb2f7 (diff) | |
download | aerc-fb3826cee5a4c23cc1135523e267fc3801e8533a.tar.gz |
Revert "Abort if accounts.conf is world readable"
This reverts commit a755608ef9d5893b68dc4c774bbda06503481552.
Diffstat (limited to 'aerc.go')
-rw-r--r-- | aerc.go | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/aerc.go b/aerc.go index 3566895..f3607bb 100644 --- a/aerc.go +++ b/aerc.go @@ -1,7 +1,6 @@ package main import ( - "fmt" "io" "io/ioutil" "log" @@ -10,12 +9,12 @@ import ( "github.com/mattn/go-isatty" + "git.sr.ht/~sircmpwn/aerc2/config" "git.sr.ht/~sircmpwn/aerc2/commands" "git.sr.ht/~sircmpwn/aerc2/commands/account" "git.sr.ht/~sircmpwn/aerc2/commands/compose" "git.sr.ht/~sircmpwn/aerc2/commands/msgview" "git.sr.ht/~sircmpwn/aerc2/commands/terminal" - "git.sr.ht/~sircmpwn/aerc2/config" libui "git.sr.ht/~sircmpwn/aerc2/lib/ui" "git.sr.ht/~sircmpwn/aerc2/widgets" ) @@ -62,8 +61,7 @@ func main() { conf, err := config.LoadConfig(nil) if err != nil { - fmt.Printf("Failed to load config: %v\n", err) - os.Exit(1) + panic(err) } var ( @@ -75,7 +73,7 @@ func main() { for i, set := range cmds { err := set.ExecuteCommand(aerc, cmd) if _, ok := err.(commands.NoSuchCommand); ok { - if i == len(cmds)-1 { + if i == len(cmds) - 1 { return err } else { continue |