mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
Show error when failed to get current user
This commit is contained in:
parent
45f65bfc29
commit
39293933c5
@ -53,7 +53,10 @@ func New(options Options) (*App, error) {
|
||||
prefString := []byte{}
|
||||
prefPath := options.ProfileFile
|
||||
if options.ProfileFile == DefaultProfileFilePath {
|
||||
usr, _ := user.Current()
|
||||
usr, err := user.Current()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
prefPath = usr.HomeDir + "/.gotty"
|
||||
}
|
||||
if _, err = os.Stat(prefPath); os.IsNotExist(err) {
|
||||
|
Loading…
Reference in New Issue
Block a user