Compare commits

...

3 Commits

Author SHA1 Message Date
7cdd7444a5 use non format logger 2024-09-25 18:05:20 +02:00
128a2c22f7 fix typos in issue templates 2024-09-25 16:38:23 +02:00
83d5628430 add dependabot config 2024-09-25 16:33:54 +02:00
4 changed files with 13 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ assignees: TLINDEN
--- ---
**Describtion** **Description**
<!-- Please provide a clear and concise description of the issue: --> <!-- Please provide a clear and concise description of the issue: -->

View File

@@ -7,7 +7,7 @@ assignees: TLINDEN
--- ---
**Describtion** **Description**
<!-- Please provide a clear and concise description of the feature you desire: --> <!-- Please provide a clear and concise description of the feature you desire: -->

10
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "monthly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"

View File

@@ -99,7 +99,7 @@ func LoadAndEvalFile(env *zygo.Zlisp, path string) error {
// FIXME: check what res (_ here) could be and mean // FIXME: check what res (_ here) could be and mean
_, err = env.EvalString(string(code)) _, err = env.EvalString(string(code))
if err != nil { if err != nil {
log.Fatalf(env.GetStackTrace(err)) log.Fatal(env.GetStackTrace(err))
} }
} }