all: fix minor issues found by staticcheck

Signed-off-by: Moritz Poldrack <git@moritz.sh>
This commit is contained in:
Moritz Poldrack 2022-03-09 22:48:00 +01:00 committed by Robin Jarry
parent 65ae87a524
commit 4bc43d2741
11 changed files with 17 additions and 27 deletions
commands/msgview

View file

@ -151,10 +151,8 @@ func isDirExists(path string) bool {
//pathExists returns true if path exists
func pathExists(path string) bool {
_, err := os.Stat(path)
if err != nil {
return false // we don't really care why it failed
}
return true
return err == nil
}
//isAbsPath returns true if path given is anchored to / or . or ~