Only measure once when in group for Python

[GitHub #79]
This commit is contained in:
Aoran Zeng
2024-09-14 01:39:51 +08:00
parent 2e33ef697e
commit ca1dd97a52
7 changed files with 57 additions and 101 deletions

View File

@@ -63,10 +63,10 @@ void
pl_nodejs_setsrc (char *option)
{
{
char *msg = CliOpt_InEnglish ? "** Three package managers will be replaced for you at the same time: " \
char *msg = CliOpt_InEnglish ? "**Three package managers will be replaced for you at the same time: " \
"npm, pnpm, yarn. If you need to change the source independently, " \
"please run independently `chsrc set <pkg-manager>` **\n"
: "** 将同时为您更换3个包管理器 npm, pnpm, Yarn 的源,若需要独立换源,请独立运行 chsrc set <pkg-manager> **\n";
"please run independently `chsrc set <pkg-manager>`**\n"
: "**将同时为您更换3个包管理器 npm, pnpm, Yarn 的源,若需要独立换源,请独立运行 chsrc set <pkg-manager>**\n";
chsrc_log (bdyellow(msg));
}