diff --git a/app/app.go b/app/app.go index 469006a37..f7fd1bcf7 100644 --- a/app/app.go +++ b/app/app.go @@ -15,7 +15,7 @@ const ( version = "%d.%d.%d" Major = 6 Minor = 2 - Revision = 1000 + Revision = 2000 ) // Copyright is the copyright owner string diff --git a/builtins/core/modules/cmd-list.go b/builtins/core/modules/cmd-list.go index 0bbc75b31..5a5903646 100644 --- a/builtins/core/modules/cmd-list.go +++ b/builtins/core/modules/cmd-list.go @@ -7,7 +7,6 @@ import ( "strings" "github.com/lmorg/murex/config/profile" - "github.com/lmorg/murex/debug" "github.com/lmorg/murex/lang" "github.com/lmorg/murex/lang/types" ) @@ -101,7 +100,6 @@ func listModulesEnDis(p *lang.Process, enabled bool) (map[string]string, error) // only read directories if !f.IsDir() { - debug.Log("File not directory:", pack) continue } @@ -110,10 +108,7 @@ func listModulesEnDis(p *lang.Process, enabled bool) (map[string]string, error) continue } - mods, err := profile.LoadPackage(pack, false) - if err != nil { - write(p, "{RED}%s{RESET}", err.Error()) - } + mods, _ := profile.LoadPackage(pack, false) // these should NOT equate ;) if strings.HasSuffix(f.Name(), profile.IgnoredExt) != enabled { @@ -160,7 +155,6 @@ func listPackages(p *lang.Process) error { return err } if !f.IsDir() { - debug.Log("File not directory:", pack) continue } diff --git a/utils/cache/cache.go b/utils/cache/cache.go index 91f5b51ba..d3726c39a 100644 --- a/utils/cache/cache.go +++ b/utils/cache/cache.go @@ -31,7 +31,7 @@ func read(namespace string, key string, ptr any) bool { if err := json.Unmarshal(b, ptr); err != nil { if debug.Enabled { - os.Stderr.WriteString(fmt.Sprintf("Error unmarshalling cache in "+namespace, err)) + os.Stderr.WriteString(fmt.Sprintf("!!! error unmarshalling cache in '%s': %s !!!\n!!! cache value: '%s' !!!", namespace, err.Error(), string(b))) } return false } diff --git a/version.svg b/version.svg index 37a57acde..06e8ee442 100644 --- a/version.svg +++ b/version.svg @@ -1 +1 @@ -Version: 6.2.1000Version6.2.1000 +Version: 6.2.2000Version6.2.2000