oh my word i'm an idiot

This commit is contained in:
2021-03-19 13:06:11 -04:00
parent d8c49feae5
commit c1fc07de50

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