1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-11 08:00:27 +00:00

Merge branch 'master' into bundle-tools

This commit is contained in:
Calvin Rose 2024-05-26 14:33:29 -05:00
commit 2028ac8a20
2 changed files with 2 additions and 4 deletions

View File

@ -4092,9 +4092,7 @@
(def d (bundle-dir)) (def d (bundle-dir))
(if (os/stat d :mode) (if (os/stat d :mode)
(sort (os/dir d)) (sort (os/dir d))
(do @[]))
(eprint "bundle dir does not exists: " d)
@[])))
(defn- bundle-uninstall-unchecked (defn- bundle-uninstall-unchecked
[bundle-name] [bundle-name]

View File

@ -181,7 +181,7 @@ void janet_stacktrace_ext(JanetFiber *fiber, Janet err, const char *prefix) {
} }
janet_eprintf("\n"); janet_eprintf("\n");
/* Print fiber points optionally. Clutters traces but provides info /* Print fiber points optionally. Clutters traces but provides info
if (i <= 0 && fi > 0) { if (i <= 0 && fi > 0) {
janet_eprintf(" in parent fiber\n"); janet_eprintf(" in parent fiber\n");
} }
*/ */