Use better method of error type detection

This commit is contained in:
2024-01-19 21:40:39 -05:00
parent 6b4891a59f
commit e31878bd7d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
package main
// EntryRoot path to libmutton entry directory TODO to be moved to libmutton
var EntryRoot = home + "/.local/share/libmutton"
var EntryRoot = home + "/.local/share/fake"
// exported constants TODO to be moved to libmutton
const (
+1 -1
View File
@@ -58,7 +58,7 @@ func EntryListGen() {
// check for errors encountered while walking directory
if err != nil {
// create EntryRoot if the error is the result of it not existing on the system
if err.Error() == "lstat "+EntryRoot+": no such file or directory" {
if os.IsNotExist(err) {
_ = os.Mkdir(EntryRoot, 0700)
dirList = append(dirList, "")
} else {