From 60e611edd41ecce2ac8f169774c6ff0a9d11b063 Mon Sep 17 00:00:00 2001 From: lontten Date: Wed, 2 Oct 2024 21:05:55 +0800 Subject: [PATCH] fix bunfig.toml path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 全局配置应该是 ~/.bunfig.toml 文件,项目级配置应该是在 项目根目录的 bunfig.toml 文件。~/.bun/bunfig.toml是无效的路径。 --- src/recipe/lang/Node.js/Bun.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/recipe/lang/Node.js/Bun.c b/src/recipe/lang/Node.js/Bun.c index 3d553b3..e41dd4b 100644 --- a/src/recipe/lang/Node.js/Bun.c +++ b/src/recipe/lang/Node.js/Bun.c @@ -13,12 +13,12 @@ void pl_nodejs_bun_getsrc (char *option) { - chsrc_view_file ("~/.bun/bunfig.toml"); + chsrc_view_file ("~/.bunfig.toml"); } /** - * @consult https://bun.sh/guides/install/custom-registry + * @consult https://bun.sh/docs/runtime/bunfig#global-vs-local * @consult https://github.com/RubyMetric/chsrc/issues/83 * * chsrc set bun @@ -32,7 +32,7 @@ pl_nodejs_bun_setsrc (char *option) char *file = xy_strjoin(3, "[install]\n" "registry = \"", source.url, "\""); - chsrc_note2 (xy_strjoin (3, "请您手动写入以下内容到 ", xy_uniform_path ("~/.bun/bunfig.toml"), " 文件中:")); + chsrc_note2 (xy_strjoin (3, "(全局配置)请您手动写入以下内容到 ", xy_uniform_path ("~/.bunfig.toml"), " 文件中(如果只是配置项目级,则写入到项目根目录的 bunfig.toml 文件中。):")); puts (file); chsrc_conclude (&source, setsrc_type);