oh my word i'm an idiot

This commit is contained in:
brent s. 2021-03-19 13:06:11 -04:00
parent d8c49feae5
commit c1fc07de50
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func RealPathExists(path *string) (bool, error) {
if err != nil {
return true, err
}
if _, err := os.Stat(*path); err == nil {
if _, err := os.Stat(*path); err != nil {
return false, err
}
return true, nil